标签:
public void BulletShootting(float Speed) { transform.Translate(Vector3.up * speed * Time.deltaTime); if (transform.position.y > 5.2f) { Destroy(this.gameObject); }
设置子弹初始速度的方法
原文地址:http://www.cnblogs.com/fuperfun/p/5341507.html