?? hellfire.as
字號:
?package Classes.Weapons.Rockets{
import Classes.Utils.*;
public class Hellfire extends Rocket{
public function Hellfire()
{
execution = 5;
speed = -8;
crtspeed = 0;
acceleration = -.5;
inc = 0;
}
override protected function move():void{
if(Math.abs(crtspeed)<Math.abs(speed)){
crtspeed+=acceleration;
}
Moving.moveBeeline(this,crtspeed,0);
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -