Beispiel #1
0
        private void OnFloatValueBoxChanged(ValueBox <float> control)
        {
            var box = (InputBox)control.Tag;

            if (box.HasCustomValueAccess)
            {
                box.Value = control.Value;
            }
            else
            {
                FloatValue.Set(box.ParentNode, box.Archetype, control.Value);
            }
        }
Beispiel #2
0
        private void OnFloatValueBoxChanged(ValueBox <float> control)
        {
            var box = (InputBox)control.Tag;

            FloatValue.Set(box.ParentNode, box.Archetype, control.Value);
        }
Beispiel #3
0
 private void OnFloatValueBoxChanged()
 {
     FloatValue.Set(ParentNode, Archetype, ((FloatValueBox)_defaultValueEditor).Value);
 }