Game Development Community


#1
04/11/2007 (4:16 pm)
Not really a good answer, but you can hit tilde to bring up a console and then type 'plugin.dump();' into the console and see a list of plugin functions, some of which even have comments telling you what parameters they expect.

You can also look at a lot of examples, both in the plugins folder, and in the constructor->client->tools folder.

You'll see things in there that can also be 'dumped();'

select.dump();, scene.dump(), tool.dump(); etc.

Would be nice to have a class heirarchy diagram and some real reference docs though. I'd like to code up a few selection scripts, but none of the existing plugins (that I've looked at yet) has a decent example of how to walk through the scene heirachy.
#2
04/11/2007 (6:45 pm)
Thanks, that's exactly what I was looking for.