Function |
Description |
Return type |
Notes |
getVar(String variable) |
Returns the variable with the given name (ex. fps, key_h). |
Any |
Aliases: getVariable, get |
getNumber(String variable) |
Returns the Number variable with the given name. |
Number |
getString(String variable) |
Returns the String variable with the given name. |
String |
getBoolean(String variable) |
Returns the Boolean variable with the given name. |
Boolean |
getItem(Number slot) |
Returns the item in the given name. |
ItemStack |
see Item components |
setVal(String variable, Any Object) |
Sets the variable with the given name to the given object. |
None |
strwidth(String text) |
Returns the length of the string. |
Number |
compile(String filename, String compilertype) |
Compiles the file with the specified compilertype (or the javascript compiler if none is specified),
returns the compile results and adds the elements created by the file. |
CompileResult |
CompileResult has the following properties {String topleft, String bottomleft, String topright, String bottomright,
Number topleftscale, Number bottomleftscale, Number toprightscale, Number bottomrightscale} |
exists(String filename)
|
Returns true if a file exists in the hudder config dir. |
Boolean |