Unity查找脚本被哪些Perfab或场景引用
Unity中查找脚本被哪些Prefab或场景引用
Unity中有个Find References In Scene的功能,可是仅仅能查找在当前场景中的引用。
假设发现某个脚本不知道被挂在哪个Prefab上了,以下这个脚本你可能用得到
实如今查找脚本在哪些Prefab或者场景中被引用。查找脚本引用了哪些对象(脚本,Texture,字体等)
先看截图:
源代码在这里
using UnityEngine;
using UnityEditor;
using System.Collections;
using System.Collections.Generic;
public class FindReference : EditorWindow{
static public FindReference instance;
Vector2 mScroll = Vector2.zero;
public Dictionary<string,BetterList<string>> dict;
void OnEnable() { instance = this; }
void OnDisable() { instance = null; }
void OnGUI()
{
if (dict == null)
{
return;
}
mScroll = GUILayout.BeginScrollView(mScroll);
BetterList<string> list = dict["prefab"];
if (list != null && list.size>0)
{
if(NGUIEditorTools.DrawHeader("Prefab"))
{
foreach (string item in list)
{
GameObject go = AssetDatabase.LoadAssetAtPath(item, typeof(GameObject)) as GameObject;
EditorGUILayout.ObjectField("Prefab", go, typeof(GameObject), false);
}
}
list = null;
}
list = dict["fbx"];
if (list != null && list.size > 0)
{
if(NGUIEditorTools.DrawHeader("FBX")){
foreach (string item in list)
{
GameObject go = AssetDatabase.LoadAssetAtPath(item, typeof(GameObject)) as GameObject;
EditorGUILayout.ObjectField("FBX", go, typeof(GameObject), false);
}
}
list = null;
}
list = dict["cs"];
if (list != null && list.size > 0)
{
if(NGUIEditorTools.DrawHeader("Script")){
foreach (string item in list)
{
MonoScript go = AssetDatabase.LoadAssetAtPath(item, typeof(MonoScript)) as MonoScript;
EditorGUILayout.ObjectField("Script", go, typeof(MonoScript), false);
}
}
list = null;
}
list = dict["texture"];
if (list != null && list.size > 0)
{
if (NGUIEditorTools.DrawHeader("Texture"))
{
foreach (string item in list)
{
Texture2D go = AssetDatabase.LoadAssetAtPath(item, typeof(Texture2D)) as Texture2D;
EditorGUILayout.ObjectField("Texture:" + go.name, go, typeof(Texture2D), false);
}
}
list = null;
}
list = dict["mat"];
if (list != null && list.size > 0)
{
if (NGUIEditorTools.DrawHeader("Material"))
{
foreach (string item in list)
{
Material go = AssetDatabase.LoadAssetAtPath(item, typeof(Material)) as Material;
EditorGUILayout.ObjectField("Material", go, typeof(Material), false);
}
}
list = null;
}
list = dict["shader"];
if (list != null && list.size > 0)
{
if (NGUIEditorTools.DrawHeader("Shader"))
{
foreach (string item in list)
{
Shader go = AssetDatabase.LoadAssetAtPath(item, typeof(Shader)) as Shader;
EditorGUILayout.ObjectField("Shader", go, typeof(Shader), false);
}
}
list = null;
}
list = dict["font"];
if (list != null && list.size > 0)
{
if (NGUIEditorTools.DrawHeader("Font"))
{
foreach (string item in list)
{
Font go = AssetDatabase.LoadAssetAtPath(item, typeof(Font)) as Font;
EditorGUILayout.ObjectField("Font", go, typeof(Font), false);
}
}
list = null;
}
list = dict["anim"];
if (list != null && list.size > 0)
{
if (NGUIEditorTools.DrawHeader("Animation"))
{
foreach (string item in list)
{
AnimationClip go = AssetDatabase.LoadAssetAtPath(item, typeof(AnimationClip)) as AnimationClip;
EditorGUILayout.ObjectField("Animation:", go, typeof(AnimationClip), false);
}
}
list = null;
}
list = dict["animTor"];
if (list != null && list.size > 0)
{
if (NGUIEditorTools.DrawHeader("Animator"))
{
foreach (string item in list)
{
//Animator go = AssetDatabase.LoadAssetAtPath(item, typeof(Animator)) as Animator;
//EditorGUILayout.ObjectField("Animator:", go, typeof(Animator), true);
EditorGUILayout.LabelField(item);
}
}
list = null;
}
list = dict["level"];
if (list != null && list.size > 0)
{
if (NGUIEditorTools.DrawHeader("Level"))
{
foreach (string item in list)
{
//SceneView go = AssetDatabase.LoadAssetAtPath(item, typeof(SceneView)) as SceneView;
EditorGUILayout.LabelField(item);
//SceneView go = AssetDatabase.LoadAssetAtPath(item, typeof(SceneView)) as SceneView;
//EditorGUILayout.ObjectField("Animation:" , go, typeof(SceneView), true);
}
}
list = null;
}
GUILayout.EndScrollView();
//NGUIEditorTools.DrawList("Objects", list.ToArray(), "");
}
/// <summary>
/// 依据脚本查找引用的对象
/// </summary>
[MenuItem("Assets/Wiker/Find Script Reference", false, 0)]
static public void FindScriptReference()
{
//EditorWindow.GetWindow<UIAtlasMaker>(false, "Atlas Maker", true).Show();
//Debug.Log("Selected Transform is on " + Selection.activeObject.name + ".");
//foreach(string guid in Selection.assetGUIDs){
// Debug.Log("GUID " + guid);
//}
ShowProgress(0,0,0);
string curPathName = AssetDatabase.GetAssetPath(Selection.activeObject.GetInstanceID());
Dictionary<string, BetterList<string>> dic = new Dictionary<string, BetterList<string>>();
BetterList<string> prefabList = new BetterList<string>();
BetterList<string> fbxList = new BetterList<string>();
BetterList<string> scriptList = new BetterList<string>();
BetterList<string> textureList = new BetterList<string>();
BetterList<string> matList = new BetterList<string>();
BetterList<string> shaderList = new BetterList<string>();
BetterList<string> fontList = new BetterList<string>();
BetterList<string> levelList = new BetterList<string>();
string[] allGuids = AssetDatabase.FindAssets("t:Prefab t:Scene", new string[]{"Assets"});
int i = 0;
foreach (string guid in allGuids)
{
string assetPath = AssetDatabase.GUIDToAssetPath(guid);
string[] names = AssetDatabase.GetDependencies(new string[]{assetPath}); //依赖的东东
foreach (string name in names)
{
if (name.Equals(curPathName))
{
//Debug.Log("Refer:" + assetPath);
if (assetPath.EndsWith(".prefab"))
{
prefabList.Add(assetPath);
break;
}
else if (assetPath.ToLower().EndsWith(".fbx"))
{
fbxList.Add(assetPath);
break;
}
else if (assetPath.ToLower().EndsWith(".unity"))
{
levelList.Add(assetPath);
break;
}
else if (assetPath.EndsWith(".cs"))
{
scriptList.Add(assetPath);
break;
}
else if (assetPath.EndsWith(".png"))
{
textureList.Add(assetPath);
break;
}
else if (assetPath.EndsWith(".mat"))
{
matList.Add(assetPath);
break;
}
else if (assetPath.EndsWith(".shader"))
{
shaderList.Add(assetPath);
break;
}
else if (assetPath.EndsWith(".ttf"))
{
fontList.Add(assetPath);
break;
}
}
}
ShowProgress((float)i / (float)allGuids.Length, allGuids.Length,i);
i++;
}
dic.Add("prefab", prefabList);
dic.Add("fbx", fbxList);
dic.Add("cs", scriptList);
dic.Add("texture", textureList);
dic.Add("mat", matList);
dic.Add("shader", shaderList);
dic.Add("font", fontList);
dic.Add("level", levelList);
dic.Add("anim", null);
dic.Add("animTor", null);
EditorUtility.ClearProgressBar();
EditorWindow.GetWindow<FindReference>(false, "Object Reference", true).Show();
//foreach (KeyValuePair<string, BetterList<string>> d in dic)
//{
// foreach (string s in d.Value)
// {
// Debug.Log(d.Key + "=" + s);
// }
//}
if (FindReference.instance.dict != null) FindReference.instance.dict.Clear();
FindReference.instance.dict = dic;
//string[] path = new string[1];
//path[0] = AssetDatabase.GetAssetPath(Selection.activeObject.GetInstanceID());
//string[] names = AssetDatabase.GetDependencies(path); //依赖的东东
//foreach (string name in names)
//{
// Debug.Log("Name:"+name);
//}
}
public static void ShowProgress(float val,int total,int cur)
{
EditorUtility.DisplayProgressBar("Searching", string.Format("Finding ({0}/{1}), please wait...",cur,total), val);
}
/// <summary>
/// 查找对象引用的类型
/// </summary>
[MenuItem("Assets/Wiker/Find Object Dependencies", false, 0)]
public static void FindObjectDependencies()
{
ShowProgress(0,0,0);
Dictionary<string, BetterList<string>> dic = new Dictionary<string, BetterList<string>>();
BetterList<string> prefabList = new BetterList<string>();
BetterList<string> fbxList = new BetterList<string>();
BetterList<string> scriptList = new BetterList<string>();
BetterList<string> textureList = new BetterList<string>();
BetterList<string> matList = new BetterList<string>();
BetterList<string> shaderList = new BetterList<string>();
BetterList<string> fontList = new BetterList<string>();
BetterList<string> animList = new BetterList<string>();
BetterList<string> animTorList = new BetterList<string>();
string curPathName = AssetDatabase.GetAssetPath(Selection.activeObject.GetInstanceID());
string[] names = AssetDatabase.GetDependencies(new string[] { curPathName }); //依赖的东东
int i = 0;
foreach (string name in names)
{
if (name.EndsWith(".prefab"))
{
prefabList.Add(name);
}
else if (name.ToLower().EndsWith(".fbx"))
{
fbxList.Add(name);
}
else if (name.EndsWith(".cs"))
{
scriptList.Add(name);
}
else if (name.EndsWith(".png"))
{
textureList.Add(name);
}
else if (name.EndsWith(".mat"))
{
matList.Add(name);
}
else if (name.EndsWith(".shader"))
{
shaderList.Add(name);
}
else if (name.EndsWith(".ttf"))
{
fontList.Add(name);
}
else if (name.EndsWith(".anim"))
{
animList.Add(name);
}
else if (name.EndsWith(".controller"))
{
animTorList.Add(name);
}
Debug.Log("Dependence:"+name);
ShowProgress((float)i / (float)names.Length,names.Length,i);
i++;
}
dic.Add("prefab", prefabList);
dic.Add("fbx", fbxList);
dic.Add("cs", scriptList);
dic.Add("texture", textureList);
dic.Add("mat", matList);
dic.Add("shader", shaderList);
dic.Add("font", fontList);
dic.Add("level", null);
dic.Add("animTor", animTorList);
dic.Add("anim", animList);
//deps.Sort(Compare);
EditorWindow.GetWindow<FindReference>(false, "Object Dependencies", true).Show();
if (FindReference.instance.dict != null) FindReference.instance.dict.Clear();
FindReference.instance.dict = dic;
EditorUtility.ClearProgressBar();
}
}
Unity查找脚本被哪些Perfab或场景引用的更多相关文章
- unity 查找脚本被场景中哪些对象引用
在需要查找的脚本上右键: 在场景中已经显示出所有引用该脚本的对象
- Unity Mono脚本 加密
加密环境 引擎版本:Unity3D 5.3.4 及更高版本 (使用Mono而并非IL2CPP) 操作系统:CentOS 6.2(Final) 加密环境:Android.IOS(暂定) 加密对象:C#源 ...
- 自制Unity小游戏TankHero-2D(5)声音+爆炸+场景切换+武器弹药
自制Unity小游戏TankHero-2D(5)声音+爆炸+场景切换+武器弹药 我在做这样一个坦克游戏,是仿照(http://game.kid.qq.com/a/20140221/028931.htm ...
- Unity查找物体的子物体、孙物体
Unity查找物体下的所有物体 本文提供全流程,中文翻译. Chinar 坚持将简单的生活方式,带给世人!(拥有更好的阅读体验 -- 高分辨率用户请根据需求调整网页缩放比例) Chinar -- 心分 ...
- Unity查找子物体的方式-怎么查找GameObject
Unity动态查找物体 本文提供全流程,中文翻译. Chinar 坚持将简单的生活方式,带给世人!(拥有更好的阅读体验 -- 高分辨率用户请根据需求调整网页缩放比例) Chinar -- 心分享.心创 ...
- 游戏编程之Unity常用脚本类的继承关系
前言学习Unity开发引擎的初学者会接触大量的脚本类,而这些类之间的关系往往容易被忽略.本文对Unity引擎开发中的一些常用类及其关系进行了简单的归纳总结. 博文首发地址:http://tieba.b ...
- Unity基础-脚本生命周期
理解Unity脚本的生命周期对游戏开发很重要,这篇文章对生命周期做一个记录和总结.Unity的脚本生命周期(消息),也就是在脚本运行时,自动并且按顺序执行的一系列函数.在unity官网中有对生命周期详 ...
- Lua脚本在redis分布式锁场景的运用
目录 锁和分布式锁 锁是什么? 为什么需要锁? Java中的锁 分布式锁 redis 如何实现加锁 锁超时 retry redis 如何释放锁 不该释放的锁 通过Lua脚本实现锁释放 用redis做分 ...
- Unity 查找泛型List中的相同与不同数据
Unity查找泛型集合中的不同数据 本文提供全流程,中文翻译. Chinar 坚持将简单的生活方式,带给世人!(拥有更好的阅读体验 -- 高分辨率用户请根据需求调整网页缩放比例) Chinar -- ...
随机推荐
- mac 安装 swoole 可能会出现的错误
请先看完之后再操作 一.用pecl安装swoole(没有安装起来) 2018年4月,由于homebrew的变动,导致无法使用brew install的方式安装php的扩展,现在改为用pecl安装,pe ...
- ACM_栈的压入、弹出序列
栈的压入.弹出序列 Time Limit: 2000/1000ms (Java/Others) Problem Description: 输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列 ...
- [转]linux tee 命令详解
转自: http://codingstandards.iteye.com/blog/833695 用途说明 在执行Linux命令时,我们可以把输出重定向到文件中,比如 ls >a.txt,这时我 ...
- NPOI复制模板导出Excel
本人菜鸟实习生一枚,公司给我安排了一个excel导出功能.要求如下:1.导出excel文件有样式要求:2.导出excel包含一个或多个工作表:3.功能做活(我的理解就是excel样式以后可能会变方便维 ...
- mongoDB 删除集合后,空间不释放的解决方法
mongoDB 删除集合后,空间不释放,添加新集合,没有重新利用之前删除集合所空出来的空间,也就是数据库大小只增不减. 方法有: 1.导出导入 dump & restore 2.修复数据库 r ...
- jQuery——表格添加数据
1.遮罩层宽高100%,position,不占位 2.注册a标签的删除事件,用on()方法,以方法可以动态添加,之前js需要利用冒泡属性(父标签注册事件,子标签冒泡,target===li触发事件) ...
- 4xx错误的本质:服务器已经接收到请求
4xx错误的本质:服务器已经接收到请求, 路径错误! { URL: http://10.100.138.32:8046/3-0/app/account/maxin } { status code: 4 ...
- 码书:编码与解码的战争 PDF 下载
码书:编码与解码的战争 PDF 下载 下载地址:https://pan.baidu.com/s/14Y_krHh-unOv4g2KYFFDgQ 如需分享码:[打开微信]->[扫描右侧二维码]-& ...
- Python编码格式导致的csv读取错误
Python编码格式导致的csv读取错误(pandas.read_csv) 本文记录python小白我今天遇到的这两个问题(csv.reader和pandas.csv_read): pandas模块“ ...
- char如何储存3个字节或者4个字节
1.char字符存储的是Unicode编码的代码点,也就是存储的是U+FF00这样的数值,然而我们在调试或者输出到输出流的时候,是JVM或者开发工具按照代码点对应的编码字符输出的. 2. 所以虽然UT ...