Editor-場景資源管理

有的時候譬圣,想把某些對象如預制體瓮恭、音頻、圖片賦值到場景厘熟,不想每個資源都寫一個變量屯蹦,用list又沒法將不同的類型的對象放在一個數組里,同時想使用這些資源跟使用Resources下的資源一樣绳姨。那么接來下這個工具颇玷,就滿足了這些需求。

第一步就缆,創(chuàng)建場景資源腳本對象文件如圖

Paste_Image.png
Paste_Image.png
Paste_Image.png

第二步帖渠,將相應資源拖到面板即可,可拖單獨文件竭宰,也可拖文件夾

Paste_Image.png

到此資源就創(chuàng)建好了

第三步空郊,創(chuàng)建場景資源管理

Paste_Image.png
Paste_Image.png
Paste_Image.png

將之前創(chuàng)建的資源腳本對象賦值到此處

第四步,獲取資源
假設想獲取的是某個音頻則代碼如下

SceneResources.Instance.Load<AudioClip>("xxxx");

這邊有個注意點切揭,就是假設狞甚,音頻文件和其他文件(如圖片)命名一樣,獲取的時候就可以加上相應的后綴,就能獲取指定對象了廓旬。

SceneResources.Instance.Load<AudioClip>("xxxx.mp3");

在如果哼审,音頻文件,有兩個同名,但是涩盾,在不同的文件夾下十气,這時候要獲取指定的,就可以通過路徑去獲取了

Paste_Image.png

資源其實可以直接賦值到場景中春霍,只是這樣要修改資源的時候砸西,都要打開場景,所以這里單獨創(chuàng)建了一個資源腳本對象去管理資源址儒。這樣后續(xù)的修改就方便多了芹枷,每個場景對應一個資源腳本對象。

接下來看看代碼是如何實現的莲趣。
資源腳本對象類

using System.Collections.Generic;
using UnityEngine;
namespace WZK
{
    [CreateAssetMenu(fileName = "場景資源", menuName = "創(chuàng)建場景序列化資源")]
    public class ResourcesScriptableObject : ScriptableObject
    {
        public List<Config> _objectList = new List<Config>();
        public List<string> _choseExtensionList = new List<string>();//擴展名
        public int _showMin = 1;
        public int _showMax = 10000;
        [System.Serializable]
        public class Config
        {
            public Object _object;//物體
            public string _assetPath;//Asset下路徑
            public Config(Object obj = null, string assetPath = "")
            {
                _object = obj;
                _assetPath = assetPath;
            }
        }
    }
}

資源腳本對象編輯類

using System.Collections.Generic;
using System.IO;
using UnityEditor;
using UnityEditor.SceneManagement;
using UnityEngine;
namespace WZK
{
    [CustomEditor(typeof(ResourcesScriptableObject))]
    public class ResourcesScriptableObjectEditor : Editor
    {
        private ResourcesScriptableObject _resourcesScriptableObject;
        private string _directionPath;//文件夾路徑
        private string _fileAssetPath;//文件工程目錄
        private bool _isExist;//是否已存在
        private bool _isDelete;//刪除資源
        public List<string> _extensionList = new List<string> { ".mp3", ".ogg", ".asset", ".txt", ".xml", ".mat", ".prefab", ".png", ".jpg" };//選擇的擴展名列表
        public override void OnInspectorGUI()
        {
            _resourcesScriptableObject = target as ResourcesScriptableObject;
            int index = -1;
            for (int i = 0; i < _extensionList.Count; i++)
            {
                if (i % 4 == 0) EditorGUILayout.BeginHorizontal();
                index = _resourcesScriptableObject._choseExtensionList.IndexOf(_extensionList[i]);
                if (GUILayout.Button(_extensionList[i]))
                {
                    if (index == -1)
                    {
                        _resourcesScriptableObject._choseExtensionList.Add(_extensionList[i]);
                    }
                    else
                    {
                        _resourcesScriptableObject._choseExtensionList.RemoveAt(index);
                    }
                }
                if((i>1&&i%4==3)||i==_extensionList.Count-1) EditorGUILayout.EndHorizontal();
            }
            GUILayout.Space(10);
            if (_resourcesScriptableObject._choseExtensionList.Count == 0)
            {
                EditorGUILayout.LabelField("沒有選擇指定的后綴鸳慈,默認包含以上所有后綴!");
                
            }
            else
            {
                string str = "";
                for (int i = 0; i < _resourcesScriptableObject._choseExtensionList.Count; i++)
                {
                    str += _resourcesScriptableObject._choseExtensionList[i];
                    if (i < _resourcesScriptableObject._choseExtensionList.Count - 1)
                    {
                        str += "喧伞、";
                    }
                }
                EditorGUILayout.LabelField("選擇的后綴:"+str);
            }
            GUILayout.Space(10);
            GUILayout.BeginHorizontal();
            EditorGUILayout.LabelField("顯示區(qū)間");
            _resourcesScriptableObject._showMin = EditorGUILayout.IntField(_resourcesScriptableObject._showMin);
            if (_resourcesScriptableObject._showMin < 1) _resourcesScriptableObject._showMin = 1;
            GUILayout.Label("~");
            _resourcesScriptableObject._showMax = EditorGUILayout.IntField(_resourcesScriptableObject._showMax);
            if (_resourcesScriptableObject._showMax < _resourcesScriptableObject._showMin) _resourcesScriptableObject._showMax = _resourcesScriptableObject._showMin;
            GUILayout.EndHorizontal();
            GUILayout.Space(10);
            List<ResourcesScriptableObject.Config> objList = _resourcesScriptableObject._objectList;
            for (int i = 0; i < objList.Count; i++)
            {
                if (i >= _resourcesScriptableObject._showMin-1&& i < _resourcesScriptableObject._showMax)
                {
                    EditorGUILayout.BeginHorizontal();
                    objList[i]._object = (Object)EditorGUILayout.ObjectField("對象" + (i + 1), objList[i]._object, typeof(Object), false);
                    _isDelete = false;
                    if (GUILayout.Button("刪除" + (i + 1)))
                    {
                        _isDelete = true;
                    }
                    EditorGUILayout.EndHorizontal();
                    objList[i]._assetPath = EditorGUILayout.TextField("路徑" + (i + 1), objList[i]._assetPath);
                    GUILayout.Space(10);
                    if (objList[i]._assetPath == "" && objList[i]._object) objList[i]._assetPath = objList[i]._object.name;
                    if (_isDelete) objList.RemoveAt(i);
                }
            }
            if (Event.current.type == EventType.DragExited)
            {
                System.Type type = DragAndDrop.objectReferences[0].GetType();
                if (type!=typeof(DefaultAsset))
                {
                    AddObject(objList,DragAndDrop.objectReferences[0], DragAndDrop.paths[0]);
                }
                else
                {
                    _directionPath = Application.dataPath;
                    _directionPath = _directionPath.Substring(0, _directionPath.LastIndexOf("/") + 1) + DragAndDrop.paths[0];
                    if (Directory.Exists(_directionPath))
                    {
                        DirectoryInfo direction = new DirectoryInfo(_directionPath);
                        FileInfo[] files = direction.GetFiles("*", SearchOption.AllDirectories);
                        for (int i = 0; i < files.Length; i++)
                        {
                            if (_resourcesScriptableObject._choseExtensionList.Count == 0 && _extensionList.Contains(Path.GetExtension(files[i].FullName)) == false)
                            {
                                continue;
                            }
                            else if (_resourcesScriptableObject._choseExtensionList.Count > 0 && _resourcesScriptableObject._choseExtensionList.Contains(Path.GetExtension(files[i].FullName)) == false)
                            {
                                continue;
                            }
                            _fileAssetPath = files[i].DirectoryName;
                            _fileAssetPath = _fileAssetPath.Substring(_fileAssetPath.IndexOf("Assets")) + "/" + files[i].Name;
                            AddObject(objList, AssetDatabase.LoadAssetAtPath<Object>(_fileAssetPath), _fileAssetPath);
                        }
                    }
                }
            }
            GUILayout.Space(30);
            if (GUILayout.Button("清空")&&EditorUtility.DisplayDialog("警告", "確定要清空所有數據嗎", "確定", "取消"))
            {
                _resourcesScriptableObject._objectList.Clear();
            }
            serializedObject.ApplyModifiedProperties();
            EditorUtility.SetDirty(_resourcesScriptableObject);
        }
        /// <summary>
        /// 添加音頻
        /// </summary>
        private void AddObject(List<ResourcesScriptableObject.Config> objList, Object obj, string assetPath)
        {
            //Sprite處理
            if (assetPath.Contains(".png") || assetPath.Contains(".jpg"))
            {
                Object[] objects = AssetDatabase.LoadAllAssetsAtPath(assetPath);
                if (objects.Length >= 2)
                {
                    string tempPath = assetPath;
                    for (int i = 1; i < objects.Length; i++)
                    {
                        assetPath = tempPath.Substring(0, tempPath.LastIndexOf("/")+1) + objects[i].name + tempPath.Substring(tempPath.IndexOf("."));
                        JudgeExist(objList, objects[i], assetPath);
                    }
                    return;
                }
            }
            JudgeExist(objList, obj, assetPath);
        }
        private void JudgeExist(List<ResourcesScriptableObject.Config> objList, Object obj, string assetPath)
        {
            _isExist = false;
            assetPath = assetPath.Replace("\\", "/");
            for (int i = 0; i < objList.Count; i++)
            {
                if (objList[i]._object == obj)
                {
                    _isExist = true;
                    objList[i]._assetPath = assetPath;//如果有移動更新最新的地址
                    Debug.LogError("配置表里已存在該對象");
                    break;
                }
            }
            if (_isExist == false) objList.Add(new ResourcesScriptableObject.Config(obj, assetPath));
        }
        [MenuItem("GameObject/WZK/創(chuàng)建場景資源管理對象", false,19)]
        private static void CreateSoundManagerObject()
        {
            GameObject gameObject = new GameObject("場景資源管理");
            gameObject.AddComponent<SceneResources>();
            EditorUtility.FocusProjectWindow();
            Selection.activeObject = gameObject;
            EditorGUIUtility.PingObject(Selection.activeObject);
            Undo.RegisterCreatedObjectUndo(gameObject, "Create GameObject");
            EditorSceneManager.MarkSceneDirty(EditorSceneManager.GetActiveScene());
        }
    }
}

資源獲取類

using UnityEngine;
namespace WZK
{
    public class SceneResources:MonoBehaviour
    {
        private static SceneResources _instance;
        public static SceneResources Instance
        {
            get { return _instance; }
        }
        private void Awake()
        {
            _instance = this;
        }
        private void OnDestroy()
        {
            _instance = null;
        }
        [Header("場景資源")]
        public ResourcesScriptableObject _sceneResources;
        /// <summary>
        /// 加載資源
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="name">資源名|資源路徑|資源名+后綴</param>
        /// <returns></returns>
        public T Load<T>(string name) where T : Object
        {
            return (T)_sceneResources._objectList.Find(n => n._assetPath.Contains(name))._object;
        }
    }
}
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末蝶涩,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子絮识,更是在濱河造成了極大的恐慌绿聘,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件次舌,死亡現場離奇詭異熄攘,居然都是意外死亡,警方通過查閱死者的電腦和手機彼念,發(fā)現死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門挪圾,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人逐沙,你說我怎么就攤上這事哲思。” “怎么了吩案?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵棚赔,是天一觀的道長。 經常有香客問我徘郭,道長靠益,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任残揉,我火速辦了婚禮胧后,結果婚禮上,老公的妹妹穿的比我還像新娘抱环。我一直安慰自己壳快,他們只是感情好纸巷,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著眶痰,像睡著了一般瘤旨。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上凛驮,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天裆站,我揣著相機與錄音条辟,去河邊找鬼黔夭。 笑死,一個胖子當著我的面吹牛羽嫡,可吹牛的內容都是我干的本姥。 我是一名探鬼主播,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼杭棵,長吁一口氣:“原來是場噩夢啊……” “哼婚惫!你這毒婦竟也來了?” 一聲冷哼從身側響起魂爪,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤先舷,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后滓侍,有當地人在樹林里發(fā)現了一具尸體蒋川,經...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年撩笆,在試婚紗的時候發(fā)現自己被綠了捺球。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡夕冲,死狀恐怖氮兵,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情歹鱼,我是刑警寧澤泣栈,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站弥姻,受9級特大地震影響秩霍,放射性物質發(fā)生泄漏。R本人自食惡果不足惜蚁阳,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一铃绒、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧螺捐,春花似錦颠悬、人聲如沸矮燎。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽诞外。三九已至,卻和暖如春灾票,著一層夾襖步出監(jiān)牢的瞬間峡谊,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工刊苍, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留既们,地道東北人。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓正什,卻偏偏與公主長得像啥纸,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子婴氮,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內容

  • 《ijs》速成開發(fā)手冊3.0 官方用戶交流:iApp開發(fā)交流(1) 239547050iApp開發(fā)交流(2) 10...
    葉染柒丶閱讀 5,073評論 0 7
  • 《ilua》速成開發(fā)手冊3.0 官方用戶交流:iApp開發(fā)交流(1) 239547050iApp開發(fā)交流(2) 1...
    葉染柒丶閱讀 10,533評論 0 11
  • 《裕語言》速成開發(fā)手冊3.0 官方用戶交流:iApp開發(fā)交流(1) 239547050iApp開發(fā)交流(2) 10...
    葉染柒丶閱讀 25,996評論 5 19
  • Spring Cloud為開發(fā)人員提供了快速構建分布式系統中一些常見模式的工具(例如配置管理斯棒,服務發(fā)現,斷路器主经,智...
    卡卡羅2017閱讀 134,599評論 18 139
  • 比不努力更可怕的荣暮,是你自以為“已經很努力了”,卻“沒有任何實質的進展”罩驻,導致你反過頭來質疑“應不應該努力”這...
    撿書看劍閱讀 178評論 0 0