↧
Answer by spinaljack
Use a box collider set to trigger so that when cars pass through it you know they've reached that check point.e.g.function OnTriggerEnter(other : Collider){ if(other.CompareTag("Car")){...
View ArticleAnswer by sovalopivia
If you're new then looking through fully fledged tutorials might be more useful to you.http://unity3d.com/support/resources/tutorials/car-tutorial Is specifically about how to set up a controllable...
View ArticleAnswer by karthik
Just go through this link you will easily understand the mechanism for developing Car Race.http://unity3d.com/support/resources/tutorials/car-tutorial
View Article