暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SceneWithNestedLayoutElementsLoadScript.cs 273B

12345678910111213
  1. using NUnit.Framework;
  2. using UnityEngine;
  3. using UnityEngine.TestTools.Utils;
  4. public class SceneWithNestedLayoutElementsLoadScript : MonoBehaviour
  5. {
  6. public bool isStartCalled { get; private set; }
  7. protected void Start()
  8. {
  9. isStartCalled = true;
  10. }
  11. }