[工具]Unity Utils 圖片轉(zhuǎn)換成預(yù)設(shè)體

#if UNITY_EDITORusing System.IO;

using UnityEditor;using UnityEngine;

using UnityEngine.UI;

public class BatchCreatePrefabInPath{? ??

private const string ORIGIN_DIR = "\\Atlas"; //需要轉(zhuǎn)換的目錄(手動(dòng)修改目錄)? ??

private const string TARGET_DIR = "\\Resources\\prefabs"; //轉(zhuǎn)換后放入prefab的目錄? ??

////// 將目錄下所有圖片轉(zhuǎn)成Sprite prefab

///[MenuItem("Tools/batch/batchCreateSpritePrefabInPath")]? ??

public static void batchCreateSpritePrefabInPath()? ? {? ? ? ??

string targetDir = Application.dataPath + TARGET_DIR;? ? ? ??

string originDir = Application.dataPath + ORIGIN_DIR;? ? ? ??

if (!Directory.Exists(originDir))? ? ? ? {? ? ? ? ? ??

EditorUtility.DisplayDialog("錯(cuò)誤", originDir.Replace("\\", "/") + "目錄不存在", "確定");? ? ? ? ? ? return;? ? ? ? }? ? if (!File.Exists(targetDir)) Directory.CreateDirectory(targetDir);?

//如果目錄不存在創(chuàng)建空的目標(biāo)目錄? ? ? ??

DirectoryInfo originDirInfo = new DirectoryInfo(originDir);? ? ? ??

//創(chuàng)建prefab? ? ? ??

makeSpritePrefabs(originDirInfo.GetFiles("*.jpg", SearchOption.AllDirectories), targetDir);? ? ? ? makeSpritePrefabs(originDirInfo.GetFiles("*.png", SearchOption.AllDirectories), targetDir);? ? ? ? EditorUtility.ClearProgressBar();? ? }? ?

?////// 將目錄下所有圖片轉(zhuǎn)成prefab

///[MenuItem("Tools/batch/batchCreateImagePrefabInPath")]? ??

public static void batchCreateImagePrefabInPath()? ? {? ? ? ??

string targetDir = Application.dataPath + TARGET_DIR;? ? ? ??

string originDir = Application.dataPath + ORIGIN_DIR;? ? ? ??

if (!Directory.Exists(originDir))? ? ? ? {? ? ? ? ? ? EditorUtility.DisplayDialog("錯(cuò)誤", originDir.Replace("\\", "/") + "目錄不存在", "確定");? ? ? ? ? ? return;? ? ? ? }? ? ? ??

if (!File.Exists(targetDir)) Directory.CreateDirectory(targetDir); //如果目錄不存在創(chuàng)建空的目標(biāo)目錄? ? ? ? DirectoryInfo originDirInfo = new DirectoryInfo(originDir);? ? ? ? //創(chuàng)建prefab? ? ? ? makeImagePrefabs(originDirInfo.GetFiles("*.jpg", SearchOption.AllDirectories), targetDir);? ? ? ? makeImagePrefabs(originDirInfo.GetFiles("*.png", SearchOption.AllDirectories), targetDir);? ? ? ? EditorUtility.ClearProgressBar();? ? }? ? ////// 創(chuàng)建image的Prefabs

//////文件數(shù)據(jù)? ? ///目標(biāo)目錄? ??

private static void makeImagePrefabs(FileInfo[] files, string targetDir)? ?

?{? ? ? ? foreach (FileInfo file in files)? ? ? ??

{? ? ? ? ? ??

//獲取全路徑? ? ? ? ? ??

string allPath = file.FullName;? ? ? ? ? ??

MonoBehaviour.print(allPath);? ? ? ? ? ??

//獲取資源路徑? ? ? ? ? ??

string assetPath = allPath.Substring(allPath.IndexOf("Assets"));? ? ? ? ? ??

MonoBehaviour.print("assetPath " + assetPath);? ? ? ? ? ??

//加載貼圖? ? ? ? ? ??

Sprite sprite = AssetDatabase.LoadAssetAtPath(assetPath, typeof(Sprite)) as Sprite;? ? ? ? ? ??

//創(chuàng)建綁定了貼圖的 GameObject 對(duì)象? ? ? ? ? ??

GameObject go = new GameObject(sprite.name);? ? ? ? ? ??

go.AddComponent().sprite = sprite;? ? ? ? ? ??

go.GetComponent().sizeDelta = new Vector2(sprite.rect.width,sprite.rect.height);? ? ? ? ? ??

EditorUtility.DisplayProgressBar("創(chuàng)建" + sprite.name, "創(chuàng)建" + sprite.name, 1f);? ? ? ? ? ?

?//獲取圖片名稱(chēng)? ? ? ? ? ??

string imageName = assetPath.Replace("Assets" + ORIGIN_DIR + "\\", "");? ? ? ? ? ?

?//去掉后綴? ? ? ? ? ??

imageName = imageName.Substring(0, imageName.IndexOf("."));? ? ? ? ? ??

//得到最終路徑? ? ? ? ? ??

string prefabPath = targetDir + "\\" + imageName + ".prefab";? ? ? ? ? ??

//得到應(yīng)用當(dāng)前目錄的路徑? ? ? ? ? ??

prefabPath = prefabPath.Substring(prefabPath.IndexOf("Assets"));? ? ? ? ? ??

//創(chuàng)建目錄? ? ? ? ? ??

Directory.CreateDirectory(prefabPath.Substring(0, prefabPath.LastIndexOf("\\")));? ? ? ? ? ?

?//生成預(yù)制件? ? ? ? ? ??

PrefabUtility.CreatePrefab(prefabPath.Replace("\\", "/"), go);? ? ? ? ? ??

//銷(xiāo)毀對(duì)象? ? ? ? ? ??

GameObject.DestroyImmediate(go);? ? ? ? }? ? ? ??

EditorUtility.ClearProgressBar();? ? }? ??

////// 創(chuàng)建sprite的Prefabs

//////文件數(shù)據(jù)? ? ///目標(biāo)目錄? ?

?private static void makeSpritePrefabs(FileInfo[] files, string targetDir)? ? {? ? ? ?

?foreach (FileInfo file in files)? ? ? ? {? ? ? ? ? ??

//獲取全路徑? ? ? ? ? ??

string allPath = file.FullName;? ? ? ? ? ??

MonoBehaviour.print(allPath);? ? ? ? ? ?

?//獲取資源路徑? ? ? ? ? ??

string assetPath = allPath.Substring(allPath.IndexOf("Assets"));? ? ? ? ? ??

MonoBehaviour.print("assetPath " + assetPath);? ? ? ? ? ??

//加載貼圖? ? ? ? ? ??

Sprite sprite = AssetDatabase.LoadAssetAtPath(assetPath, typeof(Sprite)) as Sprite;? ? ? ? ? ??

//創(chuàng)建綁定了貼圖的 GameObject 對(duì)象? ? ? ? ? ??

GameObject go = new GameObject(sprite.name);? ? ? ? ? ??

go.AddComponent().sprite = sprite;

EditorUtility.DisplayProgressBar("創(chuàng)建" + sprite.name, "創(chuàng)建" + sprite.name, 1f);

//獲取圖片名稱(chēng)

string imageName = assetPath.Replace("Assets" + ORIGIN_DIR + "\\", "");

//去掉后綴

imageName = imageName.Substring(0, imageName.IndexOf("."));

//得到最終路徑

string prefabPath = targetDir + "\\" + imageName + ".prefab";

//得到應(yīng)用當(dāng)前目錄的路徑

prefabPath = prefabPath.Substring(prefabPath.IndexOf("Assets"));

//創(chuàng)建目錄

Directory.CreateDirectory(prefabPath.Substring(0, prefabPath.LastIndexOf("\\")));

//生成預(yù)制件

PrefabUtility.CreatePrefab(prefabPath.Replace("\\", "/"), go);

//銷(xiāo)毀對(duì)象

GameObject.DestroyImmediate(go);

}

EditorUtility.ClearProgressBar();

}

}

#endif

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌泻肯,老刑警劉巖佳励,帶你破解...
    沈念sama閱讀 217,277評(píng)論 6 503
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異富腊,居然都是意外死亡坏逢,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,689評(píng)論 3 393
  • 文/潘曉璐 我一進(jìn)店門(mén)赘被,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)是整,“玉大人,你說(shuō)我怎么就攤上這事民假「∪耄” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 163,624評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵羊异,是天一觀的道長(zhǎng)事秀。 經(jīng)常有香客問(wèn)我,道長(zhǎng)球化,這世上最難降的妖魔是什么秽晚? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,356評(píng)論 1 293
  • 正文 為了忘掉前任,我火速辦了婚禮筒愚,結(jié)果婚禮上赴蝇,老公的妹妹穿的比我還像新娘。我一直安慰自己巢掺,他們只是感情好句伶,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,402評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布劲蜻。 她就那樣靜靜地躺著,像睡著了一般考余。 火紅的嫁衣襯著肌膚如雪先嬉。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,292評(píng)論 1 301
  • 那天楚堤,我揣著相機(jī)與錄音疫蔓,去河邊找鬼。 笑死身冬,一個(gè)胖子當(dāng)著我的面吹牛衅胀,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播酥筝,決...
    沈念sama閱讀 40,135評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼滚躯,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了嘿歌?” 一聲冷哼從身側(cè)響起掸掏,我...
    開(kāi)封第一講書(shū)人閱讀 38,992評(píng)論 0 275
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎宙帝,沒(méi)想到半個(gè)月后丧凤,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,429評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡茄唐,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,636評(píng)論 3 334
  • 正文 我和宋清朗相戀三年息裸,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片沪编。...
    茶點(diǎn)故事閱讀 39,785評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡呼盆,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蚁廓,到底是詐尸還是另有隱情访圃,我是刑警寧澤,帶...
    沈念sama閱讀 35,492評(píng)論 5 345
  • 正文 年R本政府宣布相嵌,位于F島的核電站腿时,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏饭宾。R本人自食惡果不足惜批糟,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,092評(píng)論 3 328
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望看铆。 院中可真熱鬧徽鼎,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,723評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至石抡,卻和暖如春檐嚣,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背啰扛。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,858評(píng)論 1 269
  • 我被黑心中介騙來(lái)泰國(guó)打工嚎京, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人隐解。 一個(gè)月前我還...
    沈念sama閱讀 47,891評(píng)論 2 370
  • 正文 我出身青樓挖藏,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親厢漩。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,713評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容