I used to use Droplet for this, but it occurred to me that I could just use Maya or Blender as a dropper. I've had these scripts for a while now, and I never mentioned them because they were so simple and I thought the concept was obvious. After a recent conversation though I guess it isn't obvious, so here they are, one for Maya and one for Blender:
http://www.fileden.com/files/2006/10/8/271989/dropper.mel
http://www.fileden.com/files/2006/10/8/271989/dropper.py
(no MaxScript because I don't have 3ds max, sorry; it'd only take like ten minutes for someone to bang out a dropper script.)
These scripts save out a text file with information about every object in the scene (XYZ coordinates for position and rotation.) Then I just have my game read those text files and place entities around the scene according to the saved coordinates. So like to place particle emitters in my level (just choosing one example at random) I position spheres in Maya where I want my emitters to be, save out the positions of the spheres, and then have my game place an emitter at each saved position.
Incidentally, I just noticed they are only saving position and rotation, not the object's name; I could have sworn I added that in, I guess I'll have to do that later (holidays and all right now :P) Anyway, select the objects in the scene you want to save data about and then run the script. For now, because object names are not being saved, just have a separate text file for each type of object in your scene (man I really do need to add names to the droppers.)
It's important to note that the script for Maya doesn't create a new text file from scratch, it requires you to manually create a text file for it to overwrite. Of course, now that Maya supports Python I could rewrite the script in Python and take advantage of Python's file commands...
http://www.fileden.com/files/2006/10/8/271989/dropper.mel
http://www.fileden.com/files/2006/10/8/271989/dropper.py
(no MaxScript because I don't have 3ds max, sorry; it'd only take like ten minutes for someone to bang out a dropper script.)
These scripts save out a text file with information about every object in the scene (XYZ coordinates for position and rotation.) Then I just have my game read those text files and place entities around the scene according to the saved coordinates. So like to place particle emitters in my level (just choosing one example at random) I position spheres in Maya where I want my emitters to be, save out the positions of the spheres, and then have my game place an emitter at each saved position.
Incidentally, I just noticed they are only saving position and rotation, not the object's name; I could have sworn I added that in, I guess I'll have to do that later (holidays and all right now :P) Anyway, select the objects in the scene you want to save data about and then run the script. For now, because object names are not being saved, just have a separate text file for each type of object in your scene (man I really do need to add names to the droppers.)
It's important to note that the script for Maya doesn't create a new text file from scratch, it requires you to manually create a text file for it to overwrite. Of course, now that Maya supports Python I could rewrite the script in Python and take advantage of Python's file commands...