diff options
Diffstat (limited to 'src/resources/spritedef.cpp')
-rw-r--r-- | src/resources/spritedef.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/resources/spritedef.cpp b/src/resources/spritedef.cpp index ceefac845..b3b473cd7 100644 --- a/src/resources/spritedef.cpp +++ b/src/resources/spritedef.cpp @@ -102,6 +102,7 @@ void SpriteDef::substituteActions() substituteAction(SpriteAction::SLEEP, SpriteAction::SIT); substituteAction(SpriteAction::HURT, SpriteAction::STAND); substituteAction(SpriteAction::DEAD, SpriteAction::HURT); + substituteAction(SpriteAction::SPAWN, SpriteAction::STAND); } void SpriteDef::loadSprite(xmlNodePtr spriteNode, int variant, @@ -287,6 +288,10 @@ void SpriteDef::loadAnimation(xmlNodePtr animationNode, { animation->addTerminator(); } + else if (xmlStrEqual(frameNode->name, BAD_CAST "jump")) + { + animation->addJump(XML::getProperty(frameNode, "action", "")); + } } // for frameNode } |