Beispiel #1
0
 public void SetValue(int _level, MapFixedVector2 _center, float _radius, float _waitTime, float _moveTime)
 {
     this.level    = _level;
     this.center   = _center;
     this.radius   = _radius;
     this.waitTime = _waitTime;
     this.moveTime = _moveTime;
 }
Beispiel #2
0
 // centerX radius 是实际的长  米单位
 public DuQuanInfo(int level, MapFixedVector2 pos, float radius, float waitTime, float moveTime)
 {
     this.level    = level;
     this.center   = pos;
     this.radius   = radius;
     this.waitTime = waitTime;
     this.moveTime = moveTime;
 }
Beispiel #3
0
 public AirPlaneData(int type, MapFixedVector2 pos, float direction)
 {
     this.type      = type;
     this.pos       = pos;
     this.direction = direction;
 }
Beispiel #4
0
 public BombAreaInfo(MapFixedVector2 center, float radius, float num)
 {
     this.center = center;
     this.radius = radius;
     this.num    = num;
 }