Legacy Documentation: Version 5.2
LanguageEnglish
  • C#
  • JS

Script language

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

MonoBehaviour.CancelInvoke

Switch to Manual
public void CancelInvoke();

Description

Cancels all Invoke calls on this MonoBehaviour.

no example available in C#

public void CancelInvoke(string methodName);

Parameters

Description

Cancels all Invoke calls with name methodName on this behaviour.

	// Starting in 2 seconds.
	// a projectile will be launched every 0.3 seconds

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { public Rigidbody projectile; Rigidbody instance; void Update() { if (Input.GetButton("Fire1")) CancelInvoke("LaunchProjectile"); } void LaunchProjectile() { instance = Instantiate(projectile); instance.velocity = Random.insideUnitSphere * 5; } void Example() { InvokeRepeating("LaunchProjectile", 2, 0.3F); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961