首页 > 编程语言 > 详细

Unity more efficient find

时间:2019-01-01 22:11:46      阅读:185      评论:0      收藏:0      [点我收藏+]

Unity caches GameObjects based on their tags, so in a big scene with lots of objects,

GameObject.FindWithTag is several orders of magnitudes faster that GameObject.Find.

It still does not beat the simple deserialization of a direct public variable link (in terms of speed).

Just for the record: Object.FindObjectOfType is A LOT slower than GameObject.Find.

In our measurements, the relation is roughly: 10x GameObject.FindWithTag = GameObject.Find and 100x GameObject.Find = Object.FindObjectOfType.

Of course, all that only matters if it really matters. 99% of the cases, it just does not matter so if you don‘t write a tight Update() function in a big scene targeting iPhone 3, go on with any method you like until you run into trouble.

Unity more efficient find

原文:https://www.cnblogs.com/eiya/p/10206265.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!