unity3d Finding and collecting GameObjects

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Syntax

  • public static GameObject Find(string name);
  • public static GameObject FindGameObjectWithTag(string tag);
  • public static GameObject[] FindGameObjectsWithTag(string tag);
  • public static Object FindObjectOfType(Type type);
  • public static Object[] FindObjectsOfType(Type type);

Remarks

Which method to use

Be careful while looking for GameObjects at runtime, as this can be resource consuming. Especially : don't run FindObjectOfType or Find in Update, FixedUpdate or more generally in a method called one or more time per frame.

  • Call runtime methods FindObjectOfType and Find only when necessary
  • FindGameObjectWithTag has very good performance compared to other string based methods. Unity keeps separate tabs on tagged objects and queries those instead of the entire scene.
  • For "static" GameObjects (such as UI elements and prefabs) created in the editor use serializable GameObject reference in the editor
  • Keep your lists of GameObjects in List or Arrays that you manage yourself
  • In general, if you instantiate a lot of GameObjects of the same type take a look at Object Pooling
  • Cache your search results to avoid running the expensive search methods again and again.

Going deeper

Besides the methods that come with Unity, it's relatively easy to design your own search and collection methods.

  • In case of FindObjectsOfType(), you could have your scripts keep a list of themselves in a static collection. It is far faster to iterate a ready list of objects than to search and inspect objects from the scene.

  • Or make a script that stores their instances in a string based Dictionary, and you have a simple tagging system you can expand upon.



Got any unity3d Question?