MenuSCToggleSwitch3D.cs 407 B

1234567891011121314151617
  1. using SC.XR.Unity;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEditor;
  5. using UnityEngine;
  6. namespace SC.Menu
  7. {
  8. public class MenuSCToggleSwitch3D : MenuBase
  9. {
  10. [MenuItem("GameObject/SC3DUI/SCToggleSwitch3D", priority = 0)]
  11. public static void createButton()
  12. {
  13. CreatePrefab("Prefabs/" + typeof(SCToggleSwitch3D).Name);
  14. }
  15. }
  16. }