Exemplo n.º 1
0
    void OnValueChangedFromUI(int itemIndex)
    {
        var newValue = bindTarget.Choices[itemIndex];

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