Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

UxmlAttributeFieldDecorator Constructor

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public UxmlAttributeFieldDecorator();

Description

Creates a decorator that has no bound property.

Add a bindable child element after you construct the decorator. The decorator stays unbound until that child binds to a SerializedProperty, and only then does it show the override indicator and the context menu. Use this constructor when you build the hierarchy yourself rather than letting a drawer create it for you.

// Create a UxmlAttributeFieldDecorator and add a Slider as the bound IBindable child.
// The decorator binds automatically when the Slider binds to the "opacity" property.
static class DecoratorConstructorExample
{
    static void Example(VisualElement container)
    {
        UxmlAttributeFieldDecorator decorator = new UxmlAttributeFieldDecorator();
        Slider slider = new Slider("Opacity", 0f, 1f) { bindingPath = "opacity" };
        decorator.Add(slider);
        container.Add(decorator);
    }
}