【android 司机端源码】【android按钮素材源码】【vlc源码编译 c】untiycs源码

时间:2024-11-23 11:36:15 编辑:逐鹿大唐源码 来源:驱动防止od源码

1.Untiy相同周期在不同脚本中的执行顺序

untiycs源码

Untiy相同周期在不同脚本中的执行顺序

       可以设置脚本执行顺序

       Edit->Project Settings...->Script Execution Order

       写两个测试脚本看看效果:

       using System.Collections;

       using System.Collections.Generic;

       using UnityEngine;

       public class TestScriptA : MonoBehaviour

       {

           void Awake()

           {

               Debug.Log("TestScriptA: Awake()");

           }

       }

       -----------------------------------------------------------------------------------

       using System.Collections;

       using System.Collections.Generic;

       using UnityEngine;

       public class TestScriptB : MonoBehaviour

       {

           void Awake()

           {

               Debug.Log("TestScriptB: Awake()");

           }

       }

       将TestScriptA.cs和TestScriptB.cs挂到场景中的一个GameObject上,运行看看效果。android 司机端源码

android按钮素材源码

       日志截图

android按钮素材源码

       更多Unity开发教程

android按钮素材源码

android按钮素材源码