Files
beyond/Assets/Scripts/Tutorial/OpenWindowStep.cs
2024-11-20 15:21:28 +01:00

25 lines
561 B
C#

using Beyond;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace Beyond
{
public class OpenWindowStep : MonoBehaviour
{
public GameObject window;
public BaseStepController baseStepController;
// Start is called before the first frame update
private void Start()
{
baseStepController.ConditionsAreMet += () => window.activeSelf;
}
// Update is called once per frame
private void Update()
{
}
}
}