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

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