summary refs log tree commit diff stats
path: root/res/scripts/common.lua
diff options
context:
space:
mode:
Diffstat (limited to 'res/scripts/common.lua')
-rw-r--r--res/scripts/common.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/res/scripts/common.lua b/res/scripts/common.lua index 825d2e5..2a51419 100644 --- a/res/scripts/common.lua +++ b/res/scripts/common.lua
@@ -344,3 +344,12 @@ function StopBobbing(spriteName)
344 local sprite = getSprite(spriteId) 344 local sprite = getSprite(spriteId)
345 sprite.bobsWhenNormal = false 345 sprite.bobsWhenNormal = false
346end 346end
347
348--- Sets the animation slowdown for a sprite.
349-- @param spriteName the alias of the sprite to modify
350-- @param amount the number of animation frames needed to advance the sprite's animation (1 means the effect is disabled)
351function SetAnimationSlowdown(spriteName, amount)
352 local spriteId = getSpriteByAlias(spriteName)
353 local sprite = getSprite(spriteId)
354 sprite.animSlowdown = amount
355end