Rotate
(Difference between revisions)
Dahnielson (Talk | contribs) |
Dahnielson (Talk | contribs) |
||
Line 23: | Line 23: | ||
[[Category:Lua scripting]] | [[Category:Lua scripting]] | ||
[[Category:Lua function]] | [[Category:Lua function]] | ||
− | [[Category: | + | [[Category:Transformation]] |
Revision as of 14:29, 5 February 2014
Rotates the object. The first 3 zeros are X,Y,Z values and the last is the angle.
The "local" argument is optional (local coordinates), without it the transformation is global (global coordinates).
To increase rotating speed, put higher value at angle.
Example 1 : Continuous rotation
object = getObject("object") -- Scene update function onSceneUpdate() rotate(object, {0, 0, 1}, 1, "local") end
Example 2 : Rotation on key press (Space)
object = getObject("object") -- Scene update function onSceneUpdate() if isKeyPressed("SPACE") then rotate(object, {0, 0, 1}, 1, "local") end end