Hello,
I need to inactivate a trigger volume for a short time. When an actor overlap a trigger (e.g number 1), i need that another trigger volume(e.g number 2) be inactivated. Is there a method to do that ?
Hey totopsycho,
What you can do is use a boolean variable that is set to true for a short period of time when you activate the first trigger and set back to false after a certain amount of time has passed. You then use that boolean to feed into a branch that’s checked when you activate the second trigger–if that boolean is set to true, then you don’t execute anything. That would accomplish what you are trying to do; here is an example setup in a Level blueprint:
Hope that helps!
-Steve