首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 互联网 >

延时调用步骤

2012-10-13 
延时调用方法using UnityEngineusing System.Collectionspublic class NewBehaviourScript : MonoBehavi

延时调用方法

using UnityEngine;using System.Collections;public class NewBehaviourScript : MonoBehaviour {// Use this for initializationvoid Start () {   InvokeRepeating("LaunchProjectile", 1,5);//1秒后调用LaunchProjectile () 函数,之后每5秒调用一次}// Update is called once per framevoid Update () {   if (Input.GetButton ("Fire")) {    CancelInvoke();   }}void LaunchProjectile () {   print("hello");}}

?

热点排行