<node3d:custom>.command

This action will send a command to custom node plugin

 

<node3d:custom>.command(
    command    
    mesg = ''    
    [x,y,z,w]    

)

 

command

A command number


mesg = ''

An optional message to pass.


[x,y,z,w]

Some optional extra numbers to pass.


Remarks

This will perform the given command on the custom node plugin.

Return Value

None

Example

node = viz.add('custom.dlc')
node.command(1,'message')
node.command(2,'',23,34)