Scriptum/Assets/ManageExpBar.cs

19 lines
303 B
C#
Raw Normal View History

2022-12-18 19:19:57 +01:00
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);
}
}