Hello,
i’m trying to build a car under Unity 5B14. Whenever i add a Wheelcollider Component to the the GameObjects it will throw the notice “TerrainColliders can no longer act as triggers since Unity 5.0” during runtime endlessly… Any idea how to fix this ? I first though it might be a script i made so i made a new scene only with the wheelcollider and the terrain and it keeps throwing this notice.
Thanks!
Are you checking the trigger state of terrain colliders you touch somewhere in your code? That used to give that warning - we are changing it to only show it when trying to set the trigger state of terrain colliders, which seems saner, and might fix your problem.
That is the thing, i do NOT even have code in that scene. I know about that U5 change and couldn’t find that code you were referring to in my project.So i created a new scene, created an empty gameobject and the moment i added a WheelCollider to it i keep getting this message (The moment the wheelcollider touches the ground.
So it appears that this message get’s triggered by the WheelCollider itself. I tried removing the TerrainCollider and readding it to the scene, but no matter what i’m doing it keeps producing this error.