EmanMhesin 8855b70bb6 Created WelcomeUI script
Created WelcomeUI MonoBehaviour script
2025-06-04 18:37:32 +02:00

13 lines
204 B
C#

using UnityEngine;
public class WelcomeUI : MonoBehaviour
{
public GameObject uiPanel;
public void StartExperience()
{
uiPanel.SetActive(false); // Hides the welcome screen
}
}