摘要:
1. 尽量避免每帧处理 比方: function Update() { DoSomeThing(); } 可改为每5帧处理一次: function Update() { if(Time.frameCount % 5 == 0) { DoSomeThing(); } } 2. 定时反复处理用 Invo 阅读全文
posted @ 2017-04-23 18:53
liguangsunls
阅读(261)
评论(0)
推荐(0)
2017年4月23日