- Home /
OnTriggerEnter2D call again and again if there is not collision of bodies in Unity 4.3
Hi, I have two 2D cars, one is player car which is continues moving, and second opponent car which is static. and both x and y is same but z is different, lets say player car start from 0 and end to 100 and opponent car stay on 50, I want when player car reaches to 50 then it collide with opponent car and trigger function should call but this not happen. What happen is that when player car start moving from 0th position toward 100th trigger enter function start calling again and again and again. Both object have box collider(also checked with polygon) with istrigger option enabled. Opponent car is rigidbody but gravity 0. I also have road sprite image but this has not collider or rigidbody. What I think that I am working on 2D and also using z axis because of using z-axis this may be problem its may be wrong but thats my thoughts. Kindly tell me what should I do to tackle with this issue. Thanks in advance.
Answer by TheShadowblast123 · Dec 31, 2013 at 08:57 AM
Question: Are you working in 2D mode? The Reason for my pondering is that by default there is no Z. Okay corrections there is a Z but it's Zero (Zero being nothing you can again say that there is no Z but you can still use it).
Here's where my proposal comes in: I'm under the assumption that Again there is "no Z". More specifically in the physics system. Makes since right. There's only 2 Dimensions, so get rid of the one the makes the least sense to use "Z" and make the physics system completely X and Y based.
On Another note: If your in 2D It should actually look weird to use the Z because of the fact the camera is orthographic.
Fix: Do it on the X axis instead of the Z
Thanks @TheShadowblast123 for your answer, but what if I'll change X ins$$anonymous$$d of Z, but I also need to move right and left Player's car, currently I am using X to move right and left but I'll change this to Y in 2D then I think I need also to change sprite images according to that to set according to X and Y axis. What you think, what you suggest me?
Your answer
Follow this Question
Related Questions
The tilemap collider is simply not working 0 Answers
[2020.3][2D Collision] Trigger collider with physics computation 0 Answers
OnTriggerEnter2D problem on created collider2d and rigidbody2d during runtime 0 Answers
High speed 2D colliders going through eachother? 2 Answers
Pausing/Waiting/Stopping code in a 2D Collision Function 1 Answer