Implemented cutscenes and mating

This commit is contained in:
Richard Ott
2018-09-01 18:54:44 +02:00
parent b6ea22e42b
commit e274f7a368
24 changed files with 1046 additions and 21 deletions

View File

@@ -0,0 +1,39 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MateMate : MonoBehaviour {
public bool mateStick;
public bool mateGlide;
public bool mateGlow;
public GameObject cutscene;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
private void OnTriggerEnter(Collider other)
{
if (other.transform.root.GetComponentInChildren<LurchMovement>())
{
if(mateStick)
other.transform.root.GetComponentInChildren<LurchMovement>().canStick = true;
if(mateGlide)
other.transform.root.GetComponentInChildren<LurchMovement>().canGlide = true;
if(mateGlow)
//other.transform.root.GetComponentInChildren<LurchMovement>().canGlide = true;
cutscene.SetActive(true);
}
}
}