I’ve been reading up on stuff and looking for a solution but nobody seems to have any info on solving this problem. Is this an issue or a bug with Unity?
What I’m attempting to do is, I have a trigger that is hidden and when the player is standing inside, I do some various sequences in the script then after so many seconds I unhide the trigger but since the player is standing still, it doesn’t get triggered.
I’m aware of OnTriggerEnter and that the player must be moving when entering a trigger for it to work. Also I’m aware of other methods of OnTriggerEnter if it is on a moving object then the trigger must have a rigid body. I’m already using these things in my test levels.
I just have no idea how or if it is even possible to have the player activate a trigger that is unhidden once the player is already inside and not moving. This is the only option I have in order to get this certain sequence to work. The player cannot move nor can the trigger move.
Is this some type of bug on trigger functionality on Unity’s part? It seems like a simple thing that should just work. Any help is greatly appreciated.