Fire Start() each time...

Hello,
i attached a Script S to an Object GO, when i run the App, the Start() of the S is fired normally, BUT when i Disable GO and then re-Enable it, the Start() of the S is NOT fired again …
Thanks for any useful Help …

Start only fires once in the lifetime of the object.

If you want something to fire each time you turn it on, you need to use OnEnable

5 Likes

Thank you very much dear Brathnan !!