Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

bool IsInvoking(string methodName);

Description

Is any invoke on methodName pending?

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public Rigidbody projectile;
    void Update() {
        if (Input.GetKeyDown(KeyCode.Space) && !IsInvoking("LaunchProjectile"))
            Invoke("LaunchProjectile", 2);
        
    }
    void LaunchProjectile() {
        Rigidbody instance = Instantiate(projectile);
        instance.velocity = Random.insideUnitSphere * 5;
    }
}
bool IsInvoking();

Description

Is any invoke pending on this MonoBehaviour?