Multigen Creator: fltObject
Example 1: explicit references to a source node and a group node
- a source and node are specified
- default source is "fltSource"
- default node is the name of the fltObject
- desired node is found under source, removed, and given to the fltObject
fltObject mySource (file(scene.flt))
mover myMover ()
{
fltObject myObject (source(mySource,mySceneNode,same))
}Example 2: default references to a source node and a group node
fltObject fltSource (file(scene.flt))
mover myMover ()
{
fltObject mySceneNode (node)
}