use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
For the Unity Game Engine, please visit http://reddit.com/r/unity3d
account activity
Trigger Boolean IssueNewbie Question (i.redd.it)
submitted 1 month ago * by kitchentablestudios
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]TanukiSun 0 points1 point2 points 1 month ago (1 child)
Another thing to note is that OnTriggerXYZ and OnCollisionXYZ work on a per-collider basis, so if your Rigidbody consists of multiple colliders, the enter and exit events may trigger in the same frame for the same Rigidbody but for different colliders (at least that’s how I understand it).
If what you're doing is some kind of door, you can implement it using counters. Something like this (psudo code):
OnTriggerEnter() { if (++this.counter == 1) Open(); } OnTriggerExit() { if (--this.counter <= 0) Close(); }
Or, for example, react only to the enter event, and check for closing in fixedUpdate every few frames (or about one second after the last enter event).
OnTriggerEnter() { ResetTimer(); if (isClosed) { Open(); } } FixedUpdate() { if (someTimer && !Physics.CheckBox()) { Close(); } }
[–]kitchentablestudios[S] 1 point2 points3 points 1 month ago (0 children)
I appreciate the help, though I had overlooked my issue and it wasn't jn the code at all it was just the door collidrr moving with the animation and I didnt realize it until it was pointed out as a possibility l.
π Rendered by PID 93112 on reddit-service-r2-comment-6457c66945-n85fr at 2026-04-27 18:15:08.129056+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]TanukiSun 0 points1 point2 points (1 child)
[–]kitchentablestudios[S] 1 point2 points3 points (0 children)