Call Script
You can use "CallScript" to call methods from HeliScript or Script. When specifying arguments, you should separate the component name, method name, and arguments with commas.
For example, if you want to call the following method
component Foo {
void Method(string Param)
}
If you specify "Foo,Method,abc" as the argument, the "Method" will be called with "abc" assigned to the parameter.
Label | Function |
---|---|
Category | Specify whether the component to be called is on the scene side or the canvas side. |
Item Name | Specify the item name or layer name. |
Component Name | Specify the component name. |
Function Name | Specify the method name. |
String Argument | Specify the argument name. |