智能委托invoke和InvokeRepeating
(一)invoke
Invoke() 方法是 Unity3D 的一种委托机制
如: Invoke("SendMsg", 5); 它的意思是:5 秒之后调用 SendMsg() 方法;
使用 Invoke() 方法需要注意 3点:
1 :它应该在 脚本的生命周期里的(Start、Update、OnGUI、FixedUpdate、LateUpdate)中被调用;
2:Invoke(); 不能接受含有 参数的方法;
3:在 Time.ScaleTime = 0; 时, Invoke() 无效,因为它不会被调用到
Invoke() 也支持重复调用:InvokeRepeating("SendMsg", 2 , 3);
这个方法的意思是指:2 秒后调用 SendMsg() 方法,并且之后每隔 3 秒调用一次 SendMsg () 方法
(二)InvokeRepeating
Invokes the method methodName in time seconds.
在time秒调用methodName方法;简单说,根据时间调用指定方法名的方法
After the first invocation repeats calling that function every repeatRate seconds.
从第一次调用开始,每隔repeatRate时间调用一次.
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour
{ public Rigidbody projectile;
void LaunchProjectile()
{ Rigidbody instance = Instantiate(projectile);
instance.velocity = Random.insideUnitSphere * 5; }
public void Awake()
{ InvokeRepeating("LaunchProjectile", 2, 0.3F); } }