Unity编辑器下重启的方法
Unity编辑器下重启的方法
我们项目AssetBundle打包走的是全自动化流程,打包之前要进行各种资源检测,如果检测顺利通过,则进入打包,否则提示错误资源名称及路径,打包中断!有时候即使资源检测通过也会打包崩溃,初步断定是Unity的内存爆了,因为Unity在编辑器下打开工程中的资源不会释放掉,所以内存一直在占用,打包时要进行一系列资源依赖分析,我们也知道,如果资源量非常大时候,Unity要保存资源依赖的堆栈,所以会有内存崩掉的风险,所以我就想着,打包之前重启下Unity,让Unity释放掉一些没用的内存。完成这个工作,有以下几个步骤:
1.获取Unity的安装路径,实现方法有两种:
方法一:简单粗暴,E:\\Unity 5.5.2\\Unity\\Editor\\Unity.exe,不具有通用性。
方法二:通过注册包表获取安装路径,获取操作如下:
private static string GetUnityPath() { #region 通过注册便获取Unity安装路径 var regKey = @"Unity package file\DefaultIcon"; RegistryKey registryKey = Registry.ClassesRoot.OpenSubKey(regKey); string pathName = (string)registryKey.GetValue(null); // "(Default)" if (string.IsNullOrEmpty(pathName)) { return null; } int index = pathName.LastIndexOf(","); if (index != -1) { var exepath = pathName.Substring(0, index).Replace("\"", string.Empty); var binpath = Path.GetDirectoryName(exepath); var di = new DirectoryInfo(binpath); if (di.Parent != null) { return di.Parent.FullName; } } return null; #endregion }
第二步:创建一个新的Unity进程。
static void StartPeocess(string applicationPath) { Process po = new Process(); po.StartInfo.FileName = applicationPath; po.Start(); }
第三步:杀掉之前旧的进程
string[] args = unityPath.Split('\\'); Process[] pro = Process.GetProcessesByName(args[args.Length - 1].Split('.')[0]);//Unity foreach (var item in pro) { UnityEngine.Debug.Log(item.MainModule); item.Kill(); }
好了,这样基本上就搞定了!
完整代码:
using Microsoft.Win32; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.IO; using UnityEditor; using UnityEngine; public class ReStartUnityTools : MonoBehaviour { public static string UnityExePath = "E:\\Unity 5.5.2\\Unity\\Editor\\Unity.exe"; [MenuItem("Tools/ReStartUnity(重启Unity)")] public static void ReStartUnity() { string unityPath = UnityExePath;// GetUnityPath();公司电脑通过注册表是可以的,家里电脑不行,你们可以用这个函数试下,实在不行先写上Unity安装路径吧 StartPeocess(unityPath); string[] args = unityPath.Split('\\'); Process[] pro = Process.GetProcessesByName(args[args.Length - 1].Split('.')[0]);//Unity foreach (var item in pro) { UnityEngine.Debug.Log(item.MainModule); item.Kill(); } } private static string GetUnityPath() { #region 通过注册便获取Unity安装路径 var regKey = @"Unity package file\DefaultIcon"; RegistryKey registryKey = Registry.ClassesRoot.OpenSubKey(regKey); string pathName = (string)registryKey.GetValue(null); // "(Default)" if (string.IsNullOrEmpty(pathName)) { return null; } int index = pathName.LastIndexOf(","); if (index != -1) { var exepath = pathName.Substring(0, index).Replace("\"", string.Empty); var binpath = Path.GetDirectoryName(exepath); // var di = new DirectoryInfo(binpath); if (di.Parent != null) { return di.Parent.FullName; } } return null; #endregion } static void StartPeocess(string applicationPath) { Process po = new Process(); po.StartInfo.FileName = applicationPath; po.Start(); } }
运行结果:
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
您可能感兴趣的文章
- 01-10大数(高精度数)模板(分享)
- 01-10深入解析Linux下\r\n的问题
- 01-10Linux C 获取进程退出值的实现代码
- 01-10解析Linux下的时间函数:设置以及获取时间的方法
- 01-10深入探讨linux下进程的最大线程数、进程最大数、进程打开的文
- 01-10基于linux下获取时间函数的详解
- 01-10深入sizeof的使用详解
- 01-10Linux下semop等待信号时出现Interrupted System Call错误(EINTR)解决方法
- 01-10深入解析C中的数值与真假
- 01-10用c语言实现冒泡排序,选择排序,快速排序
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 01-11ajax实现页面的局部加载
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10delphi制作wav文件的方法
- 01-10C#中split用法实例总结
- 01-10SublimeText编译C开发环境设置
- 04-02jquery与jsp,用jquery
- 01-10使用C语言求解扑克牌的顺子及n个骰子