- Home /
How can I end a level and go to the next level
I'm making a simple platformer in C# and at the end of the level I want there to be a gizmo that when the player enter's the the box collider, it sends them to the next level. I've tried for a while now, but have gotten no where. Does anyone have a script for that?
Comment
Best Answer
Answer by getyour411 · Feb 16, 2014 at 06:07 AM
as in
OnTriggerEnter (or OnCollisionEnter)
Application.Loadlevel("someLevel")
?