using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class UIHomeWindow : MonoBehaviour { private Text _version; private GameObject _aboutView; private void Awake() { _version = this.transform.Find("version").GetComponent(); _aboutView = this.transform.Find("AboutView").gameObject; var loginBtn = this.transform.Find("Start").GetComponent