ChangeAnimation
From MaratisWiki
(Difference between revisions)
(Created page with "Play or Change an Animation Note that it also apply to looped animations. Basic use : object = getObject("object") function onSceneUpdate() -- On "W" Key...") |
Dahnielson (Talk | contribs) m |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{lua-function|changeAnimation|object, animationId}} | |
− | + | ||
− | + | ||
+ | Play or change an animation. Note that it also apply to looped animations. | ||
− | + | {{lua-function-param|object|object to operate on}} | |
− | + | {{lua-function-param|animationId|animation to change to}} | |
object = getObject("object") | object = getObject("object") | ||
Line 12: | Line 11: | ||
if isKeyPressed("W") then | if isKeyPressed("W") then | ||
-- Play Walk Animtion | -- Play Walk Animtion | ||
− | changeAnimation( | + | changeAnimation(object, "1") |
end | end | ||
-- On "W" Key Release | -- On "W" Key Release | ||
if onKeyUp("W") then | if onKeyUp("W") then | ||
-- Change to Pose | -- Change to Pose | ||
− | changeAnimation( | + | changeAnimation(object, "0") |
end | end | ||
end | end | ||
+ | |||
+ | [[Category:Lua scripting]] | ||
+ | [[Category:Lua function]] | ||
+ | [[Category:Animation]] |
Latest revision as of 23:58, 8 February 2014
changeAnimation(object, animationId)
Play or change an animation. Note that it also apply to looped animations.
-
object
: object to operate on -
animationId
: animation to change to
object = getObject("object") function onSceneUpdate() -- On "W" Key Press if isKeyPressed("W") then -- Play Walk Animtion changeAnimation(object, "1") end -- On "W" Key Release if onKeyUp("W") then -- Change to Pose changeAnimation(object, "0") end end