using System.Collections; using System.Collections.Generic; using UnityEngine; public class ManageExpBar : MonoBehaviour { public GameObject levelNumber; void OnEnable() { levelNumber.SetActive(false); } void OnDisable() { levelNumber.SetActive(true); } }