ARLocationEditorConfigManager.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using UnityEngine;
  2. using UnityEditor;
  3. /// <summary>
  4. /// This is a static class that makes sure that there always is a
  5. /// ARLocationConfig resource for the project.
  6. /// </summary>
  7. [InitializeOnLoad]
  8. // ReSharper disable once InconsistentNaming
  9. public class ARLocationEditorConfigManager {
  10. static ARLocationEditorConfigManager()
  11. {
  12. Debug.Log("[ARLocation]: Starting up!");
  13. if (AssetDatabase.IsValidFolder("Assets/Resources"))
  14. {
  15. Debug.Log("[ARLocation]: Resource folder already exists!");
  16. }
  17. else
  18. {
  19. Debug.Log("[ARLocation]: Creating resource folder...");
  20. AssetDatabase.CreateFolder("Assets", "Resources");
  21. }
  22. var ss = AssetDatabase.FindAssets("ARLocationConfig", new [] {"Assets/Resources"});
  23. if (ss.Length > 0)
  24. {
  25. Debug.Log("[ARLocation]: Config already exists!");
  26. }
  27. else
  28. {
  29. Debug.Log("[ARLocation]: Creating new configuration!");
  30. AssetDatabase.CopyAsset("Assets/ARLocation/ARLocationConfig.asset", "Assets/Resources/ARLocationConfig.asset");
  31. }
  32. }
  33. }