TOADY FROGGERSON QUEST: 'Driving Cars' - Solutions

Quest: Toady Froggerson
Challenge: Driving Cars

Feel free to share your solutions, ideas and creations below. If you get stuck, you can find some ideas here for completing this challenge.

1 Like

In the Vehicle.cs script

void Update()
{
    //TODO - Move the vechicle along the tile (note: the vehicle will already move sideways with the parent tile)
    gameObject.transform.Translate(Vector3.forward * speed * Time.deltaTime);
}

Privacy & Terms