private void Awake() { if (_instance != null && _instance != this) { Destroy(this.gameObject); } else { _instance = this; } }
void Start() { asKey = gameObject.AddComponent<AssignKey>(); ApplyChanges(); SetSettings(); }