码迷,mamicode.com
首页 > 编程语言 > 详细

unity脚本生命周期

时间:2017-01-17 21:50:39      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:with   调用   mono   public   而且   engine   mon   log   class   

using UnityEngine;
using System.Collections;

public class CubeScript : MonoBehaviour {
//脚本对象加载的时候调用
void Awake(){
Debug.Log ("Awake");
}
//脚本可用的时候会被调用一次
void OnEnable(){
Debug.Log ("OnEnable");
}
//脚本初始化调用一次
void Start () {
Debug.Log("Start");
//1.GameObject通过游戏物体名字去获取游戏物体获取场景中的sphere
GameObject Sphere = GameObject.Find("Sphere");
//打印sphere的tag值
Debug.Log(Sphere .tag);

//2.
GameObject Sphere1 = GameObject.FindWithTag("Player");
Debug.Log(Sphere1.name);
}

//start调用之后被调用,而且是脚本可用的时候每帧调用一次
void Update () {
Debug.Log("Update");
}
//updated调用之后调用,也是每帧执行一次
void LateUpdate(){
Debug.Log("LateUpdate");
}
//脚本不可用的时候会被调用一次
void OnDisable(){
Debug.Log("OnDisable");
}
//脚本被销毁的时候调用
void OnDestroy(){
Debug.Log ("OnDestroy");
}
}

unity脚本生命周期

标签:with   调用   mono   public   而且   engine   mon   log   class   

原文地址:http://www.cnblogs.com/lzl0823/p/6294447.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!