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() { } } }