mirror of
https://github.com/ConjureETS/EscapeTheRoom.git
synced 2026-03-24 17:20:58 +00:00
28 lines
453 B
C#
28 lines
453 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class BladeTrapTriggers : MonoBehaviour {
|
|
|
|
public GameObject bladeTrap;
|
|
|
|
// Use this for initialization
|
|
void Start () {
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update () {
|
|
|
|
}
|
|
|
|
void OnTriggerEnter(Collider other)
|
|
{
|
|
if(other.tag == "Player")
|
|
{
|
|
bladeTrap.GetComponent<BladeTrapScript>().SetIsStarted(true);
|
|
|
|
}
|
|
|
|
}
|
|
}
|