Engine:CLUA script: Difference between revisions
Jump to navigation
Jump to search
(3 intermediate revisions by the same user not shown) | |||
Line 18: | Line 18: | ||
script 'var bob fred;bob' | script 'var bob fred;bob' | ||
</lua> | </lua> | ||
Creates a Lua function that sets and prints | Creates a Lua function that sets and prints an engine variable and runs it from script, all from inside Lua. | ||
<lua> | <lua> | ||
function | function fred(s) script 'bob ' + s + ';bob' end | ||
script "lua | script "lua fred 'james'" | ||
</lua> | </lua> | ||
: Prints ' | : Prints 'james' | ||
== Notes == | == Notes == | ||
* | * |
Latest revision as of 23:07, 18 October 2023
Runs an engine script from the Lua runtime.
script "var bob fred"
Arguments[edit]
- script - the block of text to be run as a script in the engine.
Associations[edit]
- Is by default placed in the default Lua runtime.
Details[edit]
A global Lua runtime function that runs a script from Lua.
Examples[edit]
Default values[edit]
From Lua creates an engine variable 'bob' and prints its value:
script 'var bob fred;bob'
Creates a Lua function that sets and prints an engine variable and runs it from script, all from inside Lua.
function fred(s) script 'bob ' + s + ';bob' end
script "lua fred 'james'"
- Prints 'james'