コード例 #1
0
ファイル: BossD.java プロジェクト: AnberZhou/exp3d
 public BossD() {
   entityType = EntityType.BOSS;
   width = 20;
   height = 20;
   attackPower = 400;
   lifeStart = 170000;
   scriptInterpreter = new ScriptInterpreter();
   scriptInterpreter.entity = this;
   rotationSpeedZ = new SmoothJoin();
   rotationY = new SmoothJoin();
   rotYShakeAmplitude = new SmoothJoin();
 }