Polishing 1

General polishing commit
This commit is contained in:
Jan Groß
2018-09-06 21:24:11 +02:00
parent ffd5beade2
commit b778c14158
184 changed files with 58363 additions and 16430 deletions

View File

@@ -0,0 +1,39 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TriggerDeactivateLight : MonoBehaviour {
public LightLurch theScript;
public Light theLight;
public bool activate;
public bool deactivate;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
private void OnTriggerEnter(Collider other)
{
if (other.transform.root.tag == "Player")
{
if (deactivate)
{
theScript.enabled = false;
theLight.enabled = false;
}
if (activate)
{
theScript.enabled = true;
theLight.enabled = true;
}
}
}
}