MenuTooltip.cs 360 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEditor;
  5. namespace SC.Menu
  6. {
  7. public class MenuTooltip : MenuBase
  8. {
  9. [MenuItem("GameObject/SDK/Tooltip", priority = 500)]
  10. public static void CreatTooltip()
  11. {
  12. CreatePrefab("Prefabs/Tooltip");
  13. }
  14. }
  15. }