LogicObject
Variable: direct access to the NetLogic object
Each NetLogic displays a LogicObject
variable, which represents the same NetLogic node. It is useful for directly accessing the node.
Examples
This example shows the value of the
Speed
variable contained in the NetLogic set to 100
LogicObject.GetVariable("Speed").Value = 100;
This example shows the value of the
Speed
variable assigned to the speed
C# integer variable.
int speed = LogicObject.GetVariable("Speed").Value;