using StarterAssets; using System.Collections; using System.Collections.Generic; using UnityEngine; public class Status : MonoBehaviour { public GameObject bag; public GameObject Player; bool mouseVisible = false; private void Update() { } public void ToggleBag() { bag.SetActive(!bag.active); } }