< scenenode | CodeSamples | Timer >
---% Code tested with Luxinia 0.95 build Nov 15 2006
---% at 11/16/06 22:48:14
-- create a node at 0,100,0
node = scenenode.new("scenenode",0,100,0)
child = scenenode.new("achild",0,0,10)
child:link(false,node) -- link against the parent
node:localrotdeg(45,30,0)
-- create a sphere and link it agains the node
-- and store it in a variable of this scenenode
node.l3d = l3dprimitive.newsphere("sphere",1)
node.l3d:linkinterface(node)
child.l3d = l3dprimitive.newsphere("sphere",1)
child.l3d:linkinterface(child)
