Fixed bug where action animations and sprites weren't being removed

when all animations and sprites were cleared out.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3320 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ted V
2005-01-28 03:28:38 +00:00
parent 81487748dc
commit 44be1bda18
@@ -197,6 +197,20 @@ public abstract class PuzzleBoardView extends VirtualMediaPanel
} }
} }
// documentation inherited
public void clearSprites ()
{
super.clearSprites();
_actionSprites.clear();
}
// documentation inherited
public void clearAnimations ()
{
super.clearAnimations();
_actionAnims.clear();
}
/** /**
* Returns the number of action animations on the board. * Returns the number of action animations on the board.
*/ */