コード例 #1
0
ファイル: CreateScript.cs プロジェクト: hs2610366/Unit3d_Test
 public static void CreateUIElementsUXML()
 {
     if (Config.Init())
     {
         string path = PathEditorTool.GetSelectedPath();
         if (PathEditorTool.AssetSavePathIsNullOrEmpty(path))
         {
             return;
         }
         if (PathEditorTool.IsNotScriptPath(path))
         {
             return;
         }
         CreateNewScript(path, UxmlName);
     }
 }
コード例 #2
0
ファイル: CreateScript.cs プロジェクト: hs2610366/Unit3d_Test
 public static void CreateCSharpTemp()
 {
     if (Config.Init())
     {
         string path = PathEditorTool.GetSelectedPath();
         if (PathEditorTool.AssetSavePathIsNullOrEmpty(path))
         {
             return;
         }
         if (PathEditorTool.IsNotScriptPath(path))
         {
             return;
         }
         CreateNewScript(path, TemplateName);
     }
 }