GameObjectMenuItems.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using UnityEngine;
  2. using UnityEditor;
  3. #if !ARGPS_USE_VUFORIA
  4. using UnityEngine.XR.ARFoundation;
  5. #endif
  6. namespace ARLocation
  7. {
  8. public static class GameObjectMenuItems{
  9. [MenuItem("GameObject/AR+GPS/ARLocationRoot", false, 20)]
  10. public static void CreateARLocationRoot()
  11. {
  12. var go = new GameObject("ARLocationRoot");
  13. go.AddComponent<ARLocationManager>();
  14. go.AddComponent<ARLocationProvider>();
  15. var arSessionOrigin = GameObject.Find("AR Session Origin");
  16. if (arSessionOrigin != null)
  17. {
  18. go.transform.SetParent(arSessionOrigin.transform);
  19. }
  20. }
  21. [MenuItem("GameObject/AR+GPS/GPS Stage Object", false, 20)]
  22. public static GameObject CreateGpsStageObject()
  23. {
  24. var go = new GameObject("GPS Stage Object");
  25. go.AddComponent<PlaceAtLocation>();
  26. return go;
  27. }
  28. [MenuItem("GameObject/AR+GPS/GPS Hotspot Object", false, 20)]
  29. public static GameObject CreateGpsHotspotObject()
  30. {
  31. var go = new GameObject("GPS Hotspot Object");
  32. go.AddComponent<Hotspot>();
  33. return go;
  34. }
  35. #if ARGPS_DEV_MODE
  36. [MenuItem("Assets/Print GUID", false)]
  37. public static void PrintGuit()
  38. {
  39. foreach (var s in Selection.assetGUIDs)
  40. {
  41. Debug.Log(s);
  42. }
  43. }
  44. #endif
  45. [MenuItem("GameObject/AR+GPS/Create Basic Scene Structure", false, 20)]
  46. public static void CreateBasicScene()
  47. {
  48. #if ARGPS_USE_VUFORIA
  49. EditorApplication.ExecuteMenuItem("GameObject/Vuforia Engine/AR Camera");
  50. Selection.activeObject = null;
  51. EditorApplication.ExecuteMenuItem("GameObject/Vuforia Engine/Ground Plane/Plane Finder");
  52. CreateARLocationRoot();
  53. var stage = CreateGpsStageObject();
  54. var capsule = GameObject.CreatePrimitive(PrimitiveType.Capsule);
  55. capsule.transform.SetParent(stage.transform);
  56. #else
  57. EditorApplication.ExecuteMenuItem("GameObject/XR/AR Session");
  58. Selection.activeObject = null;
  59. EditorApplication.ExecuteMenuItem("GameObject/XR/AR Session Origin");
  60. Selection.activeObject = null;
  61. EditorApplication.ExecuteMenuItem("GameObject/AR+GPS/ARLocationRoot");
  62. var prevMain = GameObject.FindWithTag("MainCamera");
  63. if (prevMain)
  64. {
  65. Object.DestroyImmediate(prevMain);
  66. }
  67. var cam = GameObject.Find("AR Camera");
  68. if (cam)
  69. {
  70. cam.tag = "MainCamera";
  71. var camera = cam.GetComponent<Camera>();
  72. camera.farClipPlane = 1000.0f;
  73. }
  74. var arSessionOrigin = Object.FindObjectOfType<ARSessionOrigin>().gameObject;
  75. arSessionOrigin.AddComponent<ARPlaneManager>();
  76. var stage = CreateGpsStageObject();
  77. var capsule = GameObject.CreatePrimitive(PrimitiveType.Capsule);
  78. capsule.transform.SetParent(stage.transform);
  79. #endif
  80. }
  81. }
  82. }