Added setLocation() and reset().

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1694 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-09-17 20:06:58 +00:00
parent c08067ac1f
commit 2e7fd00214
@@ -1,5 +1,5 @@
//
// $Id: Animation.java,v 1.6 2002/04/25 16:23:30 mdb Exp $
// $Id: Animation.java,v 1.7 2002/09/17 20:06:58 mdb Exp $
package com.threerings.media.animation;
@@ -48,6 +48,15 @@ public abstract class Animation
_renderOrder = value;
}
/**
* Sets the location at which this animation will be rendered.
*/
public void setLocation (int x, int y)
{
_bounds.x = x;
_bounds.y = y;
}
/**
* Returns a rectangle containing all pixels rendered by this
* animation.
@@ -94,6 +103,15 @@ public abstract class Animation
return _finished;
}
/**
* If this animation has run to completion, it can be reset to prepare
* it for another go.
*/
public void reset ()
{
_finished = false;
}
/**
* Invalidates the bounds of this animation.
*/