Provide those constructors, too.
git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@893 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
@@ -25,10 +25,38 @@ import java.awt.AlphaComposite;
|
|||||||
import java.awt.Composite;
|
import java.awt.Composite;
|
||||||
import java.awt.Graphics2D;
|
import java.awt.Graphics2D;
|
||||||
|
|
||||||
|
import com.threerings.media.image.Mirage;
|
||||||
|
import com.threerings.media.util.MultiFrameImage;
|
||||||
import com.threerings.media.util.Path;
|
import com.threerings.media.util.Path;
|
||||||
|
|
||||||
public class FadableImageSprite extends OrientableImageSprite
|
public class FadableImageSprite extends OrientableImageSprite
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Creates a new fadable image sprite.
|
||||||
|
*/
|
||||||
|
public FadableImageSprite ()
|
||||||
|
{}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new fadable image sprite.
|
||||||
|
*
|
||||||
|
* @param image the image to render
|
||||||
|
*/
|
||||||
|
public FadableImageSprite (Mirage image)
|
||||||
|
{
|
||||||
|
super(image);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new fadable image sprite.
|
||||||
|
*
|
||||||
|
* @param frames the frames to render
|
||||||
|
*/
|
||||||
|
public FadableImageSprite (MultiFrameImage frames)
|
||||||
|
{
|
||||||
|
super(frames);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fades this sprite in over the specified duration after waiting for the specified delay.
|
* Fades this sprite in over the specified duration after waiting for the specified delay.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user