首页 > 代码库 > Unity 5 Game Optimization
Unity 5 Game Optimization
2. Scripting Strategies
2.1 Cache Component references (缓存组件引用)
使用 Rigidbody rigidbody = GetComponent<Rigidbody> 代替 GetComponent<Rigidbody> 可以减少CPU开销
2.2 Obtaining Components using the fastest method (使用最快的方法获取组件)
GetComponent(string),GetComponent<ComponentName>,GetComponent(typeof(ComponentName))
尽量使用GetComponent<ComponentName>
2.3 Removing empty callback declarations(移除空的回调声明)
如果不需要执行功能,去掉默认的Start(),Update()等等函数
Unity 5 Game Optimization
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。