[Question] Trigger Events?

Hello all,

Stupid question time!

I have an object that is surrounded by a box collider that is set to be a “trigger” and I want to place a script on this object now by doing so will the script “ONLY” operate on OnTrigger calls - ieOnTriggerEnter, OnTriggerExit, OnTriggerStay and not operate as a full script like Start and Update and so forth?

Sorry, I had to ask :(.

Regards.

It will operate as a full script. However, you can delete Start and Update if you don’t want those.

Thankyou very much for that!

So, its a Unity problem, after seeing your response I turned off the computer and sure enough the script started operating as a full script with the Update now working.

Regards.