using System.Collections; using System.Collections.Generic; using UnityEngine; public class LiveSceneManager : SingletonMono { [HideInInspector] public FirstPersonController firstPersonController; public GameObject currentTool; protected override void Awake() { base.Awake(); firstPersonController = GameObject.FindGameObjectWithTag("Player").GetComponent(); } void Start() { } void Update() { } }