Ejemplo n.º 1
0
 public PlayerParameterData(PlayerParameterData other)
 {
     this.coefJumpSpeed  = other.coefJumpSpeed;
     this.timeToMove     = other.timeToMove;
     this.hp             = other.hp;
     this.invincibleTime = other.invincibleTime;
     this.flightTime     = other.flightTime;
 }
Ejemplo n.º 2
0
 public override void OnCreate()
 {
     //ステータス取得
     parameter = new PlayerParameterData(dataTable.GetParameter());
 }