Static methods
Constructor
Variables
Methods
Inherited Variables
Defined by Script
remappedNames:Map<String, String> = []
Remapped filenames. Used for trace messages, to show what mod the script is from.
Inherited Methods
Defined by Script
View on GitHub
call(func:String, ?parameters:Array<Dynamic>):Dynamic
Calls the function func
defined in the script.
Parameters:
func | Name of the function |
---|---|
parameters | (Optional) Parameters of the function. |
Returns:
Result (if void, then null)
View on GitHub
error(text:String, ?additionalInfo:Dynamic):Void
Shows an error from this script.
Parameters:
text | Text of the error (ex: Null Object Reference). |
---|---|
additionalInfo | Additional information you could provide. |