Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Question Instance or GetComponent?

Discussion in 'Scripting' started by yigitdurmuss, Sep 26, 2022.

  1. yigitdurmuss

    yigitdurmuss

    Joined:
    Jun 2, 2022
    Posts:
    22
    Hello, i want to ask i have a script named "x" and almost every time i need to access to the script. Because i instantiate prefabs in game so these prefabs needs to get "x" and i am using.

    Code (CSharp):
    1. private x xScript;
    2. private GameObject xScriptAttachedObject;
    3.  
    4. private void Awake()
    5. {
    6.     xScriptAttachedObject = GameObject.Find("xScriptAttachedObject");
    7. }
    8.  
    9. private void OnEnable()
    10. {
    11.     xScript = xScriptAttachedObject.GetComponent<x>;
    12. }
    So i look for a better way and find make an instance. So i added this to my "x" script;

    Code (CSharp):
    1. public static x Instance;
    2.  
    3. private void Awake()
    4. {
    5.      Instance = this;
    6. }
    And my question is; Is second way better than first one? And using the second way cause a problem in future?
     
    Last edited: Sep 26, 2022
  2. MelvMay

    MelvMay

    Unity Technologies

    Joined:
    May 24, 2013
    Posts:
    11,321
    So you know, here's how to post code on the forums:
     
  3. yigitdurmuss

    yigitdurmuss

    Joined:
    Jun 2, 2022
    Posts:
    22
    Done.
     
    MelvMay likes this.
  4. kdgalla

    kdgalla

    Joined:
    Mar 15, 2013
    Posts:
    4,615
    The general consensus is that you should avoid trying to find a game object by name if you can help it.

    It looks like what you are trying to do is a Singleton. If you google you can find examples of how to code this in a monobehavior. It's essentially the same thing you did in your second example, except people also like add code to ensure that there is never more than one instance at a time.

    If you were to accidentally create two game objects with that same script, Instance will be set to which ever instance initialized last.
     
  5. yigitdurmuss

    yigitdurmuss

    Joined:
    Jun 2, 2022
    Posts:
    22
    Actually i am obsessed with optimization side. Approx. 50 prefabs will instantiating same time. As i know using GetComponent and GameObject.Find slower than instance.

    Long story short, i need to get the some data from "x" script for prefabs. Which way is better to do this?
     
  6. Kurt-Dekker

    Kurt-Dekker

    Joined:
    Mar 16, 2013
    Posts:
    38,520
    I've worked in codebases like that. It's a DISASTER.

    DO NOT OPTIMIZE "JUST BECAUSE..." If you don't have a problem, DO NOT OPTIMIZE!

    If you DO have a problem, there is only ONE way to find out. Always start by using the profiler:

    Window -> Analysis -> Profiler

    Failure to use the profiler first means you're just guessing, making a mess of your code for no good reason.

    Not only that but performance on platform A will likely be completely different than platform B. Test on the platform(s) that you care about, and test to the extent that it is worth your effort, and no more.

    https://forum.unity.com/threads/is-...ng-square-roots-in-2021.1111063/#post-7148770

    Remember that optimized code is ALWAYS harder to work with and more brittle, making subsequent feature development difficult or impossible, or incurring massive technical debt on future development.

    Notes on optimizing UnityEngine.UI setups:

    https://forum.unity.com/threads/how...form-data-into-an-array.1134520/#post-7289413

    At a minimum you want to clearly understand what performance issues you are having:

    - running too slowly?
    - loading too slowly?
    - using too much runtime memory?
    - final bundle too large?
    - too much network traffic?
    - something else?

    If you are unable to engage the profiler, then your next solution is gross guessing changes, such as "reimport all textures as 32x32 tiny textures" or "replace some complex 3D objects with cubes/capsules" to try and figure out what is bogging you down.

    Each experiment you do may give you intel about what is causing the performance issue that you identified. More importantly let you eliminate candidates for optimization. For instance if you swap out your biggest textures with 32x32 stamps and you STILL have a problem, you may be able to eliminate textures as an issue and move onto something else.

    This sort of speculative optimization assumes you're properly using source control so it takes one click to revert to the way your project was before if there is no improvement, while carefully making notes about what you have tried and more importantly what results it has had.
     
    Ryiah likes this.
  7. spiney199

    spiney199

    Joined:
    Feb 11, 2021
    Posts:
    7,610
    The either look up the means to do a singleton, or just have the object instantiating these prefabs have a reference to the object they need and pass it through after instantiating.
     
  8. Ryiah

    Ryiah

    Joined:
    Oct 11, 2012
    Posts:
    20,958
    I recommend breaking this habit as soon as possible as it just leads to reduced productivity for what is almost always an unnoticeable performance improvement. Very rarely will it lead to anything that matters and without proper profiling it can even lead to a reduction in performance.

    That said if you're convinced everything must be optimized you should be trying to do as much as possible in DOTS not MonoBehaviours. DOTS is a framework that is designed to be highly optimized out of the gate whereas a lot of their code based around MonoBehaviours is made for ease of development not maximum efficiency.

    Just as an example I remember a video a number of years ago by one of the engineers responsible for assisting companies with optimizing their projects that mentioned Unity UI was dependent on Camera.main which was just FindObjectsByTag under the hood. If you're not aware the Find methods are known for very poor performance.
     
    Last edited: Sep 27, 2022
    Kurt-Dekker likes this.
  9. Kurt-Dekker

    Kurt-Dekker

    Joined:
    Mar 16, 2013
    Posts:
    38,520