This below, don't work. It bounces even when the value is different than 0
* User clicks with left button on Active
Active : Set NoClip to 1
* Active collides with the background
+ NoClip of Active = 0
Active : Bounce
But this, works normally (but a friend says it causes other kinds of problems)
* User clicks with left button on Active
Active : Set NoClip to 1
* NoClip of Active = 0
+ Active collides with the background
Active : Bounce
As you can see, I just changed the order... What's going on?