- Home /
Are disabled objects rendered/calculated?
When you disable a (game)object, will it be calculated, rendered or placed in the memory? And when you enable it, is this the same as instantiating the object??
Comment
Answer by robertbu · May 02, 2014 at 07:39 PM
Disables objects are in memory. Disabling and renabling is more efficient than an Instantiate/Destroy. They are not renderer. Most activity like Update(), OnGUI, and any coroutines in any component is suspended when a game object is disabled, but any InvokeRepeating() functions still continue to be called.
Your answer

Follow this Question
Related Questions
Changing material color creates a memory leak 1 Answer
Help for shots in a script 2 Answers
Having wrong texture on my model? 1 Answer
Disabled object higlight. 1 Answer
Fade an object in and out 0 Answers