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:
@@ -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;
|
package com.threerings.media.animation;
|
||||||
|
|
||||||
@@ -48,6 +48,15 @@ public abstract class Animation
|
|||||||
_renderOrder = value;
|
_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
|
* Returns a rectangle containing all pixels rendered by this
|
||||||
* animation.
|
* animation.
|
||||||
@@ -94,6 +103,15 @@ public abstract class Animation
|
|||||||
return _finished;
|
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.
|
* Invalidates the bounds of this animation.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user