void OnValueChangedFromUI(int itemIndex)
    {
        var newValue = bindTarget.Choices[itemIndex];

        bindTarget.Set(newValue, this);
    }
Example #2
0
 void OnValueChangedFromUI(float value)
 {
     bindTarget.Set(value, this);
 }
Example #3
0
 void OnValueChangedFromUI(bool newValue)
 {
     bindTarget.Set(newValue, this);
 }
Example #4
0
 void OnValueChangedFromUI(string value)
 {
     bindTarget.Set(value, this);
 }