motionfx.java

来自「一个非常绚丽的j2em徒刑库」· Java 代码 · 共 79 行

JAVA
79
字号
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   MotionFX.java

package com.tricastmedia.twuik.tue;


// Referenced classes of package com.tricastmedia.twuik.tue:
//            IMotionFXListener

public abstract class MotionFX
{

    protected MotionFX(int p0)
    {
    }

    public void tick()
    {
    }

    public int getCurPositionX()
    {
        return 0;
    }

    public int getCurPositionY()
    {
        return 0;
    }

    public boolean isInRepeatMode()
    {
        return false;
    }

    protected abstract void advance();

    protected abstract void repeat(int i);

    public void setMotionFXListener(IMotionFXListener imotionfxlistener)
    {
    }

    public void enableRepeatMode(boolean flag)
    {
    }

    public int getRepeatedCount()
    {
        return 0;
    }

    public void setStartingDelay(int i, int j)
    {
    }

    protected void init(int i, int j, int k, int l, int i1)
    {
    }

    public int getProgress()
    {
        return 0;
    }

    public static final int MOTIONFX_UNINITIALIZED = -1;
    public static final int MOTIONFX_FINISHED = 4098;
    protected int startPosX;
    protected int startPosY;
    protected int endPosX;
    protected int endPosY;
    protected int curPosX;
    protected int curPosY;
    protected int nTotalStep;
    protected int iCurStep;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?