Hello there,
I am a beginner in programming with C# and Unity, so sorry in advance if it is weird silly talk :).
I am working on my first project, and i am trying to figure out how to evaluate which technique will be best for a given serie of problems. Here is an example:
- I have "Boxes" which are all
consisting of a group of UI Buttons,
text, icons. My goal is to give the
user the possibility to Hide/Show
these different elements as he/she
wants.
----------
From these guidelines, i can think of 3 different ways to deal with this:
* Hide/Show these elements by
Activating/Deactivating the
gameobject
* Destroy the gameobject/ Instantiate
it when i need it again
* Set the object to transparent or
opaque
----------
The twist is that these boxes will be in a 3D space in which you can navigate, meaning they will be
sometimes on screen and sometimes not. That has i guess its importance in order to determine which technique is best?
----------
The question i have are:
1. Can I evaluate in advance which
solution is going to be the most
performance effective ? Is there some kind of conscensus which says that for example *activate/Deactivate a game object **is always slower** than destroying instantiating it* ?
2. Are there some lists about these conscensus somewhere ?
3. Are there other techniques in order
to perform this task ?
----------
I am guessing it is all about experience on working on different projects/tasks, though i find it difficult as a beginner to know where to find the informations. If it was not for the Unity community/ Stack Overflow and so on, i would be in real trouble, so thanks again all for being here and be so helpful =)
Note: i stumbled on the profiler thing in unity and will look into what it can do.
↧