how do you define constants to be used in several triggers within the gui? thanks!
A constant is a variable that doesn't change, used for things like Pi which are used as read-only and have no reason to be modified. To get this, just check the "Constant" box like Ultimaswc3 suggested.
It sounds like you are looking for global variables, which are variables that carry the same information through any trigger. To make a global variable, that is, not one listed under "Events" then "Local Variables". You need to right-click in the area that shows all of the triggers and go to New > Variable (Ctrl+B).
how do you define constants to be used in several trigger within the gui? thanks!
@Slistak: Go
There is a constant checkbox in the GUI when you click on the variable / view its details
A constant is a variable that doesn't change, used for things like Pi which are used as read-only and have no reason to be modified. To get this, just check the "Constant" box like Ultimaswc3 suggested.
It sounds like you are looking for global variables, which are variables that carry the same information through any trigger. To make a global variable, that is, not one listed under "Events" then "Local Variables". You need to right-click in the area that shows all of the triggers and go to New > Variable (Ctrl+B).
thanks guys