首页 > 代码库 > MonoBehaviour.StopCoroutine
MonoBehaviour.StopCoroutine
MonoBehaviour.StopCoroutine
Description
Stops all coroutines named methodName
running on this behaviour.
Please note that only StartCoroutine using a string method name can be stopped using StopCoroutine
自己试验了一下,发现参数需要一一对应
1 public class MyTest2 : MonoBehaviour 2 { 3 IEnumerator curTask; 4 void OnGUI() 5 { 6 if (GUI.Button(new Rect(10, 10, 150, 100), "start")) { 7 curTask = DealWithForward(); 8 //Please note that only StartCoroutine using IEnumerator 9 //can be stopped using StopCoroutine using IEnumerator.10 StartCoroutine(curTask);11 12 //Please note that only StartCoroutine using a string method name 13 //can be stopped using StopCoroutine using a string method name .14 //StartCoroutine("DealWithForward");15 }16 17 if (GUI.Button(new Rect(10, 110, 150, 100), "stop"))18 SotpAnimation();19 }20 21 22 23 public IEnumerator DealWithForward()24 {25 while (true)26 {27 Debug.Log(" 展示 问题 需要 土拨鼠 动画 Time.realtimeSinceStartup :" + Time.realtimeSinceStartup);28 29 yield return new WaitForSeconds(3.0f);30 }31 }32 33 public void SotpAnimation()34 {35 Debug.Log("如果 当前 有 土拨鼠 动画 停止");36 37 StopCoroutine(curTask);38 39 //StopCoroutine("DealWithForward");40 }41 }
MonoBehaviour.StopCoroutine
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。