questions

ok these are newb questions but they must be asked.

First of all what is a node and how do you make one.

second how do i use the converters? Such as the x2egg.exe, etc?

A node is an object, or a part of an object, or a connecting point between objects. When you load a model, for instance with foo = loader.loadModel(‘foo.egg’), what it returns is a node.

To run most of the converters, you need to be comfortable working with the command-line interface. Open a command shell (for instance, “Start -> Accessories -> Command Prompt”) and then type a command like “x2egg -h” to list the options to x2egg. To actually convert a model, for instance to convert from foo.x to foo.egg, you need type type something like “x2egg -o foo.egg foo.x”.

David

thank you