* Get the value of a variable considered as a string. Equivalent of variable.getAsString() * @param variable The variable to be accessed * @return The string of the specified variable * @static
(variable: gdjs.Variable)
| 1076 | * @static |
| 1077 | */ |
| 1078 | static getVariableString(variable: gdjs.Variable): string { |
| 1079 | return variable.getAsString(); |
| 1080 | } |
| 1081 | |
| 1082 | /** |
| 1083 | * Shortcut to set the value of a variable considered as a boolean. |
nothing calls this directly
no test coverage detected