示例#1
0
 public void SetShot(CannonAttributes newShot)
 {
     shotAttributes = newShot;
 }
示例#2
0
 public void UpdateStatsBulk(CannonAttributes cannonAttributes, Transform cannonTransform)
 {
     Speed = cannonAttributes.BulletSpeed();
     ChangeBulletSizeAndDamage(cannonAttributes.BulletSizeAndDamage());
     transform.position = cannonTransform.position;
 }