类 ShadowedSprite

  • 所有已实现的接口:
    Sprite

    public class ShadowedSprite
    extends java.lang.Object
    implements Sprite
    This Sprite adds a drop shadow to another Sprite.
    • 构造器概要

      构造器 
      构造器 说明
      ShadowedSprite​(proguard.gui.splash.VariableInt xOffset, proguard.gui.splash.VariableInt yOffset, proguard.gui.splash.VariableDouble alpha, proguard.gui.splash.VariableInt blur, Sprite sprite)
      Creates a new ShadowedSprite.
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      void paint​(java.awt.Graphics graphics, long time)
      Paints the object.
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 构造器详细资料

      • ShadowedSprite

        public ShadowedSprite​(proguard.gui.splash.VariableInt xOffset,
                              proguard.gui.splash.VariableInt yOffset,
                              proguard.gui.splash.VariableDouble alpha,
                              proguard.gui.splash.VariableInt blur,
                              Sprite sprite)
        Creates a new ShadowedSprite.
        参数:
        xOffset - the variable x-offset of the shadow, relative to the sprite itself.
        yOffset - the variable y-offset of the shadow, relative to the sprite itself.
        alpha - the variable darkness of the shadow (between 0 and 1).
        blur - the variable blur of the shadow (0 for sharp shadows, 1 or more for increasingly blurry shadows).
        sprite - the Sprite to be painted with its shadow.
    • 方法详细资料

      • paint

        public void paint​(java.awt.Graphics graphics,
                          long time)
        从接口复制的说明: Sprite
        Paints the object.
        指定者:
        paint 在接口中 Sprite
        参数:
        graphics - the Graphics to paint on.
        time - the time since the start of the animation, expressed in milliseconds.