View Single Post
  #5  
Old 01-27-2009, 05:37 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
When you create the custom node object, you can optionally specify additional arguments:
Code:
mynode = viz.add('mynode.dlc',command,mesg,x,y,z,w)
You can also send additional commands to the node once it is created:
Code:
mynode.command(command,mesg,x,y,z,w)
The command, mesg, x, y, z, w values are part of the VizCustomNodeObj structure that is passed to your C++ function.
Reply With Quote