SDKSystemEditor.cs 556 B

1234567891011121314151617181920212223
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEditor;
  4. using UnityEngine;
  5. namespace SC.XR.Unity.Module_SDKSystem {
  6. [CustomEditor(typeof(Module_SDKSystem), true)]
  7. public class SDKSystemEditor : Editor{
  8. public override void OnInspectorGUI()
  9. {
  10. base.OnInspectorGUI();
  11. if (GUILayout.Button("Create / Find your app from https://developer.qulivr.com/"))
  12. {
  13. UnityEngine.Application.OpenURL("https://developer.qulivr.com/");
  14. }
  15. }
  16. }
  17. }