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

unity3d中的脚本生命周期

时间:2015-01-10 06:41:15      阅读:540      评论:0      收藏:0      [点我收藏+]

标签:unity3d脚本执行的周期

技术分享

  现在我们写几个常用的

 void Awake()
    {
        Custom("Awake");
    }    void OnEnable()
    {
        Custom("OnEnable");
    }    void Start()
    {
        Custom("Start");
    }    void Update()
    {
        Custom("Update");
    }    void LateUpdate()
    {
        Custom("LateUpdate");
    }    void OnGUI()
    {
        Custom("OnGUI");
    }    void OnDestroy()
    {
        Custom("OnDestroy");
    }    void OnDisable()
    {
        Custom("OnDisable");
    }    void Custom(string fuction)
    {
        Debug.Log(fuction);
    }



本文出自 “计算机” 博客,请务必保留此出处http://5152481.blog.51cto.com/5142481/1601456

unity3d中的脚本生命周期

标签:unity3d脚本执行的周期

原文地址:http://5152481.blog.51cto.com/5142481/1601456

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