📄 fraisegroup.java
字号:
package pp.actor;
import java.awt.*;
import like.actor2D.*;
import like.graphics.*;
public class FraiseGroup extends Actor2DGroup
{
//预先定义的动画序列
public static final int Bomb = 0;
public FraiseGroup()
{
super();
animations = new AnimationStrip[1];
this.numAnimation=1;
this.MAX_X_POS = 620;
this.MIN_X_POS = 20;
this.MAX_Y_POS = 560;
this.MIN_Y_POS = 40;
}
public void init(Frame frame)
{
animations[0] = new AnimationStrip();
animations[0].setPE(40,40,0,0);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -