示例#1
0
    void OnValueChangedFromUI(int itemIndex)
    {
        var newValue = bindTarget.Choices[itemIndex];

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