码迷,mamicode.com
首页 > 编程语言 > 详细

Unity more efficient find

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

标签:beat   phone   method   nbsp   real   hat   fast   mat   ast   

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

标签:beat   phone   method   nbsp   real   hat   fast   mat   ast   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!