示例#1
0
 public EnergyBallNode(Vector2 Postion)
 {
     this.Postion = Postion;
     this.Status = EnergyBallStatus.Show;
     this.RefreshTimeNow = 0;
     this.Color = Color.AliceBlue;
     this.Rotation = MathTools.RandomGenerate();
 }
示例#2
0
 public void ToShow()
 {
     this.Status = EnergyBallStatus.Show;
 }
示例#3
0
 public void ToCoolDown()
 {
     this.Status = EnergyBallStatus.CoolDown;
 }
示例#4
0
 public void ToDisappear()
 {
     this.Status = EnergyBallStatus.Disappear;
 }
示例#5
0
 public void ToAppear()
 {
     this.Status = EnergyBallStatus.Appear;
 }