14 lines
293 B
C#
14 lines
293 B
C#
using UnityEngine;
|
|
|
|
namespace Scampz.GameJam.Assets.Scripts.Player
|
|
{
|
|
public class TalkedToIceGuy : MonoBehaviour
|
|
{
|
|
public void OnTriggerStay(Collider other)
|
|
{
|
|
if (Input.GetButton(InputOptions.Submit))
|
|
UnlockSanctumState.Instance.TalkedToIceGuy = true;
|
|
}
|
|
}
|
|
}
|