Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

BoneInspectorPanel.uxml 1.3KB

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <UXML xmlns:ui="UnityEngine.UIElements" xmlns:eui="UnityEditor.UIElements" xmlns:aui="UnityEditor.U2D.Animation">
  3. <aui:BoneInspectorPanel name="BoneInspectorPanel" text="Bone Inspector" picking-mode="Ignore">
  4. <ui:PopupWindow name="BoneInspectorPopupWindow" text="Bone">
  5. <ui:VisualElement name="BoneName" class="form-row">
  6. <ui:Label name="BoneNameLabel" text="Name" tooltip ="Name of the bone"/>
  7. <ui:TextField name="BoneNameField" class="form-editor" />
  8. </ui:VisualElement>
  9. <ui:VisualElement name="BonePosition" class="form-row">
  10. <ui:Label name="BonePositionLabel" text="Position" tooltip ="Position of the bone"/>
  11. <eui:Vector2Field name="BonePositionField" class="form-editor"/>
  12. </ui:VisualElement>
  13. <eui:FloatField name="BoneRotationField" label = "Rotation" tooltip ="Rotation of the bone"/>
  14. <eui:ColorField name="BoneColorField" label = "Bone Color" show-alpha = "false" tooltip ="Color of the bone"/>
  15. <ui:VisualElement name="BoneDepth" class="form-row">
  16. <ui:Label name="BoneDepthLabel" text="Depth" tooltip ="Depth value of the bone"/>
  17. <eui:IntegerField name="BoneDepthField" class="form-editor" />
  18. </ui:VisualElement>
  19. </ui:PopupWindow>
  20. </aui:BoneInspectorPanel>
  21. </UXML>