antfarmar / Unity-3D-Asteroids

A simple Asteroids clone. In 3D.
The Unlicense
65 stars 15 forks source link

TODO: Use MonoBehaviour Event Messages Properly #8

Closed antfarmar closed 8 years ago

antfarmar commented 8 years ago

Be sure to use _Awake, Start, OnEnable, OnDisable,_ etc, logically and properly.

antfarmar commented 8 years ago

Mostly settled and stable. Events are used as follows:

Awake: Setting references. Start: Initializations using references acquired in Awake. OnEnable\OnDisable: Mainly focused on pooled objects.