Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class LoadLevel2_Trigger : MonoBehaviour {
  5.  
  6. {
  7.      void OnTriggerEnter(Collider other)
  8.      {
  9.           Application.LoadLevel(Level02);
  10.      }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement