OnEnable() Question

Hi,

Awake gets called only once: when the object gets created. Since we disable the input system in OnDisable, we would never be able to enable it again if we enabled it in Awake. OnEnable gets called whenever “this” component becomes active.

Did this make sense?


See also: