How to Create a Simple Car Race Game in Unity3D #5 - The Finish Line

preview_player
Показать описание
In this part I will add a finish line so if player's car reaches that line, a Finish Scene will appear.

Umm.. Sorry i forgot to enable my microphone so this video doesn't have audio except some background music.

Рекомендации по теме
Комментарии
Автор

and sir u have any Idea of It main menu choose car not showing in level
sir pls reply

indiandev
Автор

Hi, how can i contact with you?, I don't have facebook, I have only discord.

bigmatbigmatik
Автор

it doesn't seem to work
i am on the latest version
using a box collider. it doesn't work? please help

KillerFrog
Автор

Hi Dude, can I have a copy of this code please, thankyou. It takes ages to try to type it out. Also great video.

KillerFrog
Автор

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class FinishScript : MonoBehaviour {

void OnTriggerEnter(Collider col)
{
if (col.gameObject.name == "FinishLine")
{

}
}
}

bigmatbigmatik