14 lines
221 B
C#
14 lines
221 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class OnTriggerLoad : MonoBehaviour
|
|
{
|
|
string sceneToLoad;
|
|
|
|
private void OnTriggerEnter(Collider other)
|
|
{
|
|
|
|
}
|
|
}
|