Saving multiple ?

 From:  Michael Gibson
9105.8 In reply to 9105.7 
Hi Pilou, yes that script ignores objects without any name assigned.

You could change this pretty easily though, for example if you want unnamed objects to go to a file unnamed.obj try modifying line 26 of the script. Currently it has:

code:
	if ( name == '' )
		continue;


Try changing it to:

code:
	if ( name == '' )
		name = 'unnamed';




- Michael