标签:
先上方法
//如果Fire1按钮被按下(默认为ctrl),每0.5秒实例化一发子弹
public GameObject projectile; public float fireRate = 0.5F; private float nextFire = 0.0F; void Update() { if (Input.GetButton("Fire1") && Time.time > nextFire) { nextFire = Time.time + fireRate; duck clone = Instantiate(projectile, transform.position, transform.rotation); } }
标签:
原文地址:http://www.cnblogs.com/sunxun/p/5559273.html