您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
31 行
1.8 KiB
31 行
1.8 KiB
<UXML xmlns="UnityEngine.UIElements" xmlns:editor="UnityEditor.UIElements">
|
|
<Box name="parameter-container" class="parameter-container">
|
|
<VisualElement name="drag-handle" class="move-buttons-container">
|
|
<VisualElement class="drag-handle"/>
|
|
</VisualElement>
|
|
<VisualElement style="flex-grow: 1; justify-content: center; margin-right: 6px;">
|
|
<VisualElement class="parameter-type-label-container">
|
|
<Box class="parameter-type-label-box">
|
|
<VisualElement name="collapse" class="collapse-parameter-toggle foldout-open"/>
|
|
<Label name="parameter-type-label" text="Type:" class="parameter-type-label"/>
|
|
<TextField name="name" text="Parameter Name"/>
|
|
</Box>
|
|
<Button name="remove-parameter" class="remove-parameter-button"/>
|
|
</VisualElement>
|
|
|
|
<VisualElement name="properties" class="parameter-properties-container" style="margin-bottom: 2px;">
|
|
<Box>
|
|
<editor:ObjectField label="Target GameObject" name="target"/>
|
|
<VisualElement name="target-container">
|
|
<VisualElement class="unity-base-field">
|
|
<Label text="Target Property" class="unity-base-field__label"/>
|
|
<editor:ToolbarMenu text="Select A Property" name="property-select-menu" class="property-select-menu"/>
|
|
</VisualElement>
|
|
<editor:EnumField label="Application Frequency" name="application-frequency"/>
|
|
</VisualElement>
|
|
</Box>
|
|
<Box name="extra-properties" style="padding-left: 4px; border-top-width: 0px;"/>
|
|
</VisualElement>
|
|
</VisualElement>
|
|
</Box>
|
|
</UXML>
|