Exemplo n.º 1
0
 public void CreateRunTimeObject(SwitchStatesInput val)
 {
     Instance = ScriptableObject.CreateInstance <SOSwitchState>();
     Instance.SetValue(val);
 }
Exemplo n.º 2
0
 public void SetValue(SwitchStatesInput val)
 {
     Value = val;
 }
Exemplo n.º 3
0
 private void Awake()
 {
     _SwichStatesInput = GetComponent <SwitchStatesInput>();
     _SwitchStateSO.CreateRunTimeObject(_SwichStatesInput);
 }