找回密码
 立即注册
查看: 213|回复: 0

Unity 创建文件夹怎么能像他自带的创建文件夹那样可以自己 ...

[复制链接]
发表于 2022-11-2 11:22 | 显示全部楼层 |阅读模式
正常咱们官网查到的Unity API
public static string CreateFolder (string parentFolder, string newFolderName);
但是这样的话就只能创建固定的命名了。
所以我查了一下官网的Create Folder是怎么实现的
// Create a folder
        [ShortcutManagement.ShortcutAttribute("Project Browser/Create/Folder", typeof(ProjectBrowser), KeyCode.N, ShortcutManagement.ShortcutModifiers.Shift | ShortcutManagement.ShortcutModifiers.Action)]
        public static void CreateFolder()
        {
            StartNameEditingIfProjectWindowExists(0, ScriptableObject.CreateInstance<DoCreateFolder>(), "New Folder", EditorGUIUtility.IconContent(EditorResources.emptyFolderIconName).image as Texture2D, null);
        }
附上地址:UnityCsReference/ProjectWindowUtil.cs at master · Unity-Technologies/UnityCsReference
她是用了一个StartNameEditingIfProjectWindowExists的方法
我查了一下这个方法
public static void StartNameEditingIfProjectWindowExists(int instanceID, EndNameEditAction endAction, string pathName, Texture2D icon, string resourceFile)
附上地址:Site not found · GitHub Pages)](Class ProjectWindowUtil
他`EndNameEditAction`有一个Action,官网是这么写的
internal class DoCreateFolder : EndNameEditAction
        {
            public override void Action(int instanceId, string pathName, string resourceFile)
            {
                string guid = AssetDatabase.CreateFolder(Path.GetDirectoryName(pathName), Path.GetFileName(pathName));
                Object o = AssetDatabase.LoadAssetAtPath(AssetDatabase.GUIDToAssetPath(guid), typeof(Object));
                ProjectWindowUtil.ShowCreatedAsset(o);
            }
        }
因为我只需要在最外层命名,里面的结构都是写死的,所以我重写了这个方法来实现我需要再里面嵌套其它文件夹。
using System.IO;
using UnityEditor;
using UnityEditor.Experimental;
using UnityEditor.ProjectWindowCallback;
using UnityEngine;

public class CreateArtResFolder : Editor
{
    [MenuItem("Assets/Create/Folder.ArtRes", priority = 15)]
    static void Init()
    {
        CreateArtFolder();
        Debug.Log("已创建文件夹");
    }

    static void CreateArtFolder()
    {
        ProjectWindowUtil.StartNameEditingIfProjectWindowExists(0, CreateInstance<DoCreateFolder>(), "New Folder", EditorGUIUtility.IconContent(EditorResources.folderIconName).image as Texture2D, null);
    }
}

internal class DoCreateFolder : EndNameEditAction
{
    public override void Action(int instanceId, string pathName, string resourceFile)
    {
        string guid = AssetDatabase.CreateFolder(Path.GetDirectoryName(pathName), Path.GetFileName(pathName));
        AssetDatabase.CreateFolder(pathName, "Materials");
        Object o = AssetDatabase.LoadAssetAtPath(AssetDatabase.GUIDToAssetPath(guid), typeof(Object));
        ProjectWindowUtil.ShowCreatedAsset(o);
    }
}

在底下DoCreateFolder类里面写内层的文件夹结构
增加一个AssetDatabase.CreateFolder(pathName, "Materials");
pathName可以直接拿到的当前创建好后的文件夹完整内部路径,所以可以按照这个思路往里面添加其它文件夹。

附上 Unity 官方源码地址:GitHub - Unity-Technologies/UnityCsReference: Unity C# reference source code.
懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Unity开发者联盟 ( 粤ICP备20003399号 )

GMT+8, 2024-11-15 12:46 , Processed in 0.087326 second(s), 25 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表