GetObjectSystem.cs 552 B

12345678910111213141516171819202122232425
  1. using Blue;
  2. using UnityEngine;
  3. namespace GHZLangChao
  4. {
  5. public class GetObjectSystem : SingletonMonobehaviour<GetObjectSystem>
  6. {
  7. [SerializeField] private GameObject ShowDevice;
  8. //[SerializeField] private GameObject ARSpaceForAll;
  9. private void Awake()
  10. {
  11. GetObj();
  12. PushIOC();
  13. }
  14. private void GetObj()
  15. {
  16. }
  17. private void PushIOC()
  18. {
  19. SceneIOCContainer.Instance.Push("ShowDevice",ShowDevice);
  20. }
  21. }
  22. }