No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }