欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Unity ios profiler配置

程序员文章站 2022-08-17 16:29:53
unity的ios profiler工具默认支持三种模式: 1是编辑器模式,2是本地设备模式,3是局域网模式。 编辑器模式启动步骤: 1.打开unity profiler窗口,并且通过activ...

unity的ios profiler工具默认支持三种模式:

Unity ios profiler配置

1是编辑器模式,2是本地设备模式,3是局域网模式。

编辑器模式启动步骤:

1.打开unity profiler窗口,并且通过active profiler下拉列表中的editor选项来进行连接。

局域网模式启用步骤:

1.获取手机当前网络的ip地址,或者流程如下:设置->wi-fi->状态信息->ip地址。参考网址如下:

https://jingyan.baidu.com/article/59a015e3534c74f79488652a.html

2.打开unity profiler窗口,并且通过active profiler下拉列表中的enter ip选项,输入当前手机ip并进行连接。

本地设备号模式启用步骤:

1.关闭防火墙,或者在启用防火墙时,确保端口54999已在防火墙的出站规则中打开,保证adb和unity能正常访问到端口。

windows端参照网址如下:

https://jingyan.baidu.com/article/c843ea0b7d5c7177931e4ab1.html

mac端参照网址如下:

https://jingyan.baidu.com/article/4ae03de31c278b3eff9e6b83.html

2.打开unity,切换平台到ios平台,打开profiler窗口,并且通过active profiler下拉列表中的iphone名称(iphone标识)选项来进行连接。

注意:

1.如果active profiler下拉列表没有iphone相关选项,此时可以参照以下网址解决:

https://answers.unity3d.com/questions/51478/unity-pro-profiler-cant-find-my-iphone.html

https://answers.unity3d.com/questions/340373/wth-profiler-not-working-with-ios.html

2.windows和mac在进行ios真机profiler时,可以通过代码buildoptions.development|buildoptions.connectwithprofiler|buildoptions.allowdebugging设置profiler选项,也可以在build setting中勾选设置,对应截图如下:

Unity ios profiler配置

3.在editor中运行项目时,引擎会进行很多的辅助操作来记录各种游戏运行信息,和真机调试时相差会比较大,所以一般不以editor模式作为真机运行性能参数指标。

4.局域网模式查看profiler数据往往存在一定的延迟性。而且必须保证本机与手机所连接的网络都是同一个局域网内方可进行调试。

5.本地设备编号模式将本地unity占用的54999端口的数据定位传输到指定手机上,相比局域网模式更实时,相对editor模式更准确,所以一般我们使用该模式来查看ios手机上性能参数指标。