Activate
From MaratisWiki
(Difference between revisions)
Dahnielson (Talk | contribs) m |
Dahnielson (Talk | contribs) m |
||
Line 2: | Line 2: | ||
Activates an object wich was already in the 3d scene but deactivated. | Activates an object wich was already in the 3d scene but deactivated. | ||
+ | |||
+ | {{lua-function-param|object|object to operate on}} | ||
object = getObject("object") | object = getObject("object") |
Latest revision as of 00:15, 9 February 2014
activate(object)
Activates an object wich was already in the 3d scene but deactivated.
-
object
: object to operate on
object = getObject("object") deactivate(object) function onSceneUpdate() if isKeyPressed("UP") then activate(object) end if isKeyPressed("DOWN") then deactivate(object) end end