-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInventoryCheck.cs
69 lines (54 loc) · 1.59 KB
/
InventoryCheck.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using UnityEngine;
using System.Collections;
public class InventoryCheck : MonoBehaviour
{
public string user;
public string correctKey;
PlayerMove playerMove;
public Animator Elevator;
public float Timer;
public AudioVolume audioVolume;
public bool key = false;
void Start()
{
playerMove = GameObject.FindGameObjectWithTag("Player").GetComponent<PlayerMove>();
Elevator.enabled = false;
}
//This checks to see if the user has the collected the key for the elevator
void Update()
{
correctKey = "Keycard";
user = playerMove.Inventory[0];
foreach(string x in playerMove.Inventory)
{
if(x.Contains(correctKey))
{
//Debug.Log("Key");
key = true;
}
}
}
//This trigger opens the elevator when the player has returned with the keycard
//There is a small delay between playing the animation and when the player is moved down
void OnTriggerStay(Collider other)
{
if (other.gameObject.tag == "Player")
{
if(key == true)
{
Elevator.enabled = true;
Timer = Timer - Time.deltaTime;
if(Timer <= 0)
{
other.transform.position = new Vector2(84.50f, -40f);
audioVolume.PlayMusic();
}
Debug.Log("Move");
}
else
{
Debug.Log("No Key");
}
}
}
}