game(ui): autogen
This commit is contained in:
parent
f00abf2d9c
commit
c172ddd29f
13
ColourMeOKGame/UIElementsSchema/UIElements.xsd
Normal file
13
ColourMeOKGame/UIElementsSchema/UIElements.xsd
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:import schemaLocation="UnityEditor.UIElements.xsd" namespace="UnityEditor.UIElements" />
|
||||||
|
<xs:import schemaLocation="UnityEditor.UIElements.Debugger.xsd" namespace="UnityEditor.UIElements.Debugger" />
|
||||||
|
<xs:import schemaLocation="Unity.UI.Builder.xsd" namespace="Unity.UI.Builder" />
|
||||||
|
<xs:import schemaLocation="UnityEditor.Search.xsd" namespace="UnityEditor.Search" />
|
||||||
|
<xs:import schemaLocation="UnityEditor.Experimental.GraphView.xsd" namespace="UnityEditor.Experimental.GraphView" />
|
||||||
|
<xs:import schemaLocation="UnityEditor.ShortcutManagement.xsd" namespace="UnityEditor.ShortcutManagement" />
|
||||||
|
<xs:import schemaLocation="UnityEditor.PackageManager.UI.Internal.xsd" namespace="UnityEditor.PackageManager.UI.Internal" />
|
||||||
|
<xs:import schemaLocation="Unity.Profiling.Editor.xsd" namespace="Unity.Profiling.Editor" />
|
||||||
|
<xs:import schemaLocation="UnityEditor.Overlays.xsd" namespace="UnityEditor.Overlays" />
|
||||||
|
</xs:schema>
|
104
ColourMeOKGame/UIElementsSchema/Unity.Profiling.Editor.xsd
Normal file
104
ColourMeOKGame/UIElementsSchema/Unity.Profiling.Editor.xsd
Normal file
|
@ -0,0 +1,104 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" targetNamespace="Unity.Profiling.Editor" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:simpleType name="SelectableLabel_keyboard-type_Type">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="Default" />
|
||||||
|
<xs:enumeration value="ASCIICapable" />
|
||||||
|
<xs:enumeration value="NumbersAndPunctuation" />
|
||||||
|
<xs:enumeration value="URL" />
|
||||||
|
<xs:enumeration value="NumberPad" />
|
||||||
|
<xs:enumeration value="PhonePad" />
|
||||||
|
<xs:enumeration value="NamePhonePad" />
|
||||||
|
<xs:enumeration value="EmailAddress" />
|
||||||
|
<xs:enumeration value="NintendoNetworkAccount" />
|
||||||
|
<xs:enumeration value="Social" />
|
||||||
|
<xs:enumeration value="Search" />
|
||||||
|
<xs:enumeration value="DecimalPad" />
|
||||||
|
<xs:enumeration value="OneTimeCode" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
<xs:complexType name="SelectableLabelType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="value" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="-1" name="max-length" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="password" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="*" name="mask-character" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="readonly" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="is-delayed" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="hide-mobile-input" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="Default" name="keyboard-type" xmlns:q1="Unity.Profiling.Editor" type="q1:SelectableLabel_keyboard-type_Type" use="optional" />
|
||||||
|
<xs:attribute default="false" name="auto-correction" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="multiline" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="SelectableLabel" substitutionGroup="engine:VisualElement" xmlns:q2="Unity.Profiling.Editor" type="q2:SelectableLabelType" />
|
||||||
|
<xs:complexType name="MemoryUsageBreakdownElementType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Other" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="background-color-class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="show-used" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="50" name="used-bytes" type="xs:long" use="optional" />
|
||||||
|
<xs:attribute default="100" name="total-bytes" type="xs:long" use="optional" />
|
||||||
|
<xs:attribute default="false" name="show-selected" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="0" name="selected-bytes" type="xs:long" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="MemoryUsageBreakdownElement" substitutionGroup="engine:VisualElement" xmlns:q3="Unity.Profiling.Editor" type="q3:MemoryUsageBreakdownElementType" />
|
||||||
|
<xs:complexType name="MemoryUsageBreakdownType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element xmlns:q4="Unity.Profiling.Editor" ref="q4:MemoryUsageBreakdownElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Memory Usage" name="header-text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="1288490240" name="total-bytes" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="show-unknown" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="Unknown" name="unknown-name" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="MemoryUsageBreakdown" substitutionGroup="engine:VisualElement" xmlns:q5="Unity.Profiling.Editor" type="q5:MemoryUsageBreakdownType" />
|
||||||
|
</xs:schema>
|
975
ColourMeOKGame/UIElementsSchema/Unity.UI.Builder.xsd
Normal file
975
ColourMeOKGame/UIElementsSchema/Unity.UI.Builder.xsd
Normal file
|
@ -0,0 +1,975 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" targetNamespace="Unity.UI.Builder" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:complexType name="TextShadowStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="TextShadowStyleField" substitutionGroup="engine:VisualElement" xmlns:q1="Unity.UI.Builder" type="q1:TextShadowStyleFieldType" />
|
||||||
|
<xs:complexType name="FoldoutColorFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-paths" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="FoldoutColorField" substitutionGroup="engine:VisualElement" xmlns:q2="Unity.UI.Builder" type="q2:FoldoutColorFieldType" />
|
||||||
|
<xs:complexType name="BuilderStyleRowType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderStyleRow" substitutionGroup="engine:VisualElement" xmlns:q3="Unity.UI.Builder" type="q3:BuilderStyleRowType" />
|
||||||
|
<xs:complexType name="FoldoutWithCheckboxType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="value" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="FoldoutWithCheckbox" substitutionGroup="engine:VisualElement" xmlns:q4="Unity.UI.Builder" type="q4:FoldoutWithCheckboxType" />
|
||||||
|
<xs:complexType name="OverlayPainterHelperElementType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Ignore" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="OverlayPainterHelperElement" substitutionGroup="engine:VisualElement" xmlns:q5="Unity.UI.Builder" type="q5:OverlayPainterHelperElementType" />
|
||||||
|
<xs:complexType name="LibraryFoldoutType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="value" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="LibraryFoldout" substitutionGroup="engine:VisualElement" xmlns:q6="Unity.UI.Builder" type="q6:LibraryFoldoutType" />
|
||||||
|
<xs:complexType name="PersistedFoldoutType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="value" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PersistedFoldout" substitutionGroup="engine:VisualElement" xmlns:q7="Unity.UI.Builder" type="q7:PersistedFoldoutType" />
|
||||||
|
<xs:complexType name="AngleStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="show-options" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="AngleStyleField" substitutionGroup="engine:VisualElement" xmlns:q8="Unity.UI.Builder" type="q8:AngleStyleFieldType" />
|
||||||
|
<xs:complexType name="UnityUIBuilderSelectionMarkerType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="UnityUIBuilderSelectionMarker" substitutionGroup="engine:VisualElement" xmlns:q9="Unity.UI.Builder" type="q9:UnityUIBuilderSelectionMarkerType" />
|
||||||
|
<xs:complexType name="CategoryDropdownFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="CategoryDropdownField" substitutionGroup="engine:VisualElement" xmlns:q10="Unity.UI.Builder" type="q10:CategoryDropdownFieldType" />
|
||||||
|
<xs:complexType name="BuilderNotificationsType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderNotifications" substitutionGroup="engine:VisualElement" xmlns:q11="Unity.UI.Builder" type="q11:BuilderNotificationsType" />
|
||||||
|
<xs:complexType name="BuilderCanvasStyleControlsType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderCanvasStyleControls" substitutionGroup="engine:VisualElement" xmlns:q12="Unity.UI.Builder" type="q12:BuilderCanvasStyleControlsType" />
|
||||||
|
<xs:complexType name="TranslateStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="TranslateStyleField" substitutionGroup="engine:VisualElement" xmlns:q13="Unity.UI.Builder" type="q13:TranslateStyleFieldType" />
|
||||||
|
<xs:complexType name="BuilderMoverType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderMover" substitutionGroup="engine:VisualElement" xmlns:q14="Unity.UI.Builder" type="q14:BuilderMoverType" />
|
||||||
|
<xs:complexType name="BuilderTooltipPreviewType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderTooltipPreview" substitutionGroup="engine:VisualElement" xmlns:q15="Unity.UI.Builder" type="q15:BuilderTooltipPreviewType" />
|
||||||
|
<xs:complexType name="PercentSliderType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PercentSlider" substitutionGroup="engine:VisualElement" xmlns:q16="Unity.UI.Builder" type="q16:PercentSliderType" />
|
||||||
|
<xs:complexType name="RotateStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="RotateStyleField" substitutionGroup="engine:VisualElement" xmlns:q17="Unity.UI.Builder" type="q17:RotateStyleFieldType" />
|
||||||
|
<xs:complexType name="NumericStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="show-options" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="NumericStyleField" substitutionGroup="engine:VisualElement" xmlns:q18="Unity.UI.Builder" type="q18:NumericStyleFieldType" />
|
||||||
|
<xs:complexType name="ImageStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ImageStyleField" substitutionGroup="engine:VisualElement" xmlns:q19="Unity.UI.Builder" type="q19:ImageStyleFieldType" />
|
||||||
|
<xs:complexType name="FoldoutNumberFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-paths" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="FoldoutNumberField" substitutionGroup="engine:VisualElement" xmlns:q20="Unity.UI.Builder" type="q20:FoldoutNumberFieldType" />
|
||||||
|
<xs:complexType name="FontStyleStripType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="FontStyleStrip" substitutionGroup="engine:VisualElement" xmlns:q21="Unity.UI.Builder" type="q21:FontStyleStripType" />
|
||||||
|
<xs:complexType name="BuilderCanvasType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderCanvas" substitutionGroup="engine:VisualElement" xmlns:q22="Unity.UI.Builder" type="q22:BuilderCanvasType" />
|
||||||
|
<xs:complexType name="HelpBoxType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="HelpBox" substitutionGroup="engine:VisualElement" xmlns:q23="Unity.UI.Builder" type="q23:HelpBoxType" />
|
||||||
|
<xs:complexType name="ModalPopupType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="title" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ModalPopup" substitutionGroup="engine:VisualElement" xmlns:q24="Unity.UI.Builder" type="q24:ModalPopupType" />
|
||||||
|
<xs:complexType name="TransformOriginSelectorType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="TransformOriginSelector" substitutionGroup="engine:VisualElement" xmlns:q25="Unity.UI.Builder" type="q25:TransformOriginSelectorType" />
|
||||||
|
<xs:complexType name="BuilderNewSelectorFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderNewSelectorField" substitutionGroup="engine:VisualElement" xmlns:q26="Unity.UI.Builder" type="q26:BuilderNewSelectorFieldType" />
|
||||||
|
<xs:complexType name="BuilderSelectionIndicatorType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderSelectionIndicator" substitutionGroup="engine:VisualElement" xmlns:q27="Unity.UI.Builder" type="q27:BuilderSelectionIndicatorType" />
|
||||||
|
<xs:complexType name="CheckerboardBackgroundType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Ignore" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="CheckerboardBackground" substitutionGroup="engine:VisualElement" xmlns:q28="Unity.UI.Builder" type="q28:CheckerboardBackgroundType" />
|
||||||
|
<xs:complexType name="TransitionsListViewType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="TransitionsListView" substitutionGroup="engine:VisualElement" xmlns:q29="Unity.UI.Builder" type="q29:TransitionsListViewType" />
|
||||||
|
<xs:complexType name="BuilderParentTrackerType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderParentTracker" substitutionGroup="engine:VisualElement" xmlns:q30="Unity.UI.Builder" type="q30:BuilderParentTrackerType" />
|
||||||
|
<xs:simpleType name="BuilderAttributesTestElement_enum-attr_Type">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="None" />
|
||||||
|
<xs:enumeration value="Good" />
|
||||||
|
<xs:enumeration value="Bad" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
<xs:complexType name="BuilderAttributesTestElementType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="default_value" name="string-attr" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="0.1" name="float-attr" type="xs:float" use="optional" />
|
||||||
|
<xs:attribute default="0.1" name="double-attr" type="xs:double" use="optional" />
|
||||||
|
<xs:attribute default="2" name="int-attr" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="3" name="long-attr" type="xs:long" use="optional" />
|
||||||
|
<xs:attribute default="false" name="bool-attr" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="RGBA(1.000, 0.000, 0.000, 1.000)" name="color-attr" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Bad" name="enum-attr" xmlns:q31="Unity.UI.Builder" type="q31:BuilderAttributesTestElement_enum-attr_Type" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderAttributesTestElement" substitutionGroup="engine:VisualElement" xmlns:q32="Unity.UI.Builder" type="q32:BuilderAttributesTestElementType" />
|
||||||
|
<xs:complexType name="DimensionStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="show-options" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="DimensionStyleField" substitutionGroup="engine:VisualElement" xmlns:q33="Unity.UI.Builder" type="q33:DimensionStyleFieldType" />
|
||||||
|
<xs:complexType name="FieldStatusIndicatorType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="field-name" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="FieldStatusIndicator" substitutionGroup="engine:VisualElement" xmlns:q34="Unity.UI.Builder" type="q34:FieldStatusIndicatorType" />
|
||||||
|
<xs:complexType name="BuilderResizerType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderResizer" substitutionGroup="engine:VisualElement" xmlns:q35="Unity.UI.Builder" type="q35:BuilderResizerType" />
|
||||||
|
<xs:complexType name="FoldoutFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-paths" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="FoldoutField" substitutionGroup="engine:VisualElement" xmlns:q36="Unity.UI.Builder" type="q36:FoldoutFieldType" />
|
||||||
|
<xs:complexType name="BuilderPlacementIndicatorType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderPlacementIndicator" substitutionGroup="engine:VisualElement" xmlns:q37="Unity.UI.Builder" type="q37:BuilderPlacementIndicatorType" />
|
||||||
|
<xs:complexType name="BuilderPaneType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="title" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderPane" substitutionGroup="engine:VisualElement" xmlns:q38="Unity.UI.Builder" type="q38:BuilderPaneType" />
|
||||||
|
<xs:complexType name="FoldoutTransitionFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-paths" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="FoldoutTransitionField" substitutionGroup="engine:VisualElement" xmlns:q39="Unity.UI.Builder" type="q39:FoldoutTransitionFieldType" />
|
||||||
|
<xs:complexType name="ToggleButtonStripType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToggleButtonStrip" substitutionGroup="engine:VisualElement" xmlns:q40="Unity.UI.Builder" type="q40:ToggleButtonStripType" />
|
||||||
|
<xs:complexType name="TransformOriginStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="TransformOriginStyleField" substitutionGroup="engine:VisualElement" xmlns:q41="Unity.UI.Builder" type="q41:TransformOriginStyleFieldType" />
|
||||||
|
<xs:complexType name="BuilderAnchorerType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="BuilderAnchorer" substitutionGroup="engine:VisualElement" xmlns:q42="Unity.UI.Builder" type="q42:BuilderAnchorerType" />
|
||||||
|
<xs:complexType name="ScaleStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ScaleStyleField" substitutionGroup="engine:VisualElement" xmlns:q43="Unity.UI.Builder" type="q43:ScaleStyleFieldType" />
|
||||||
|
<xs:complexType name="IntegerStyleFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="show-options" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="IntegerStyleField" substitutionGroup="engine:VisualElement" xmlns:q44="Unity.UI.Builder" type="q44:IntegerStyleFieldType" />
|
||||||
|
<xs:complexType name="TextAlignStripType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="TextAlignStrip" substitutionGroup="engine:VisualElement" xmlns:q45="Unity.UI.Builder" type="q45:TextAlignStripType" />
|
||||||
|
</xs:schema>
|
|
@ -0,0 +1,66 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" targetNamespace="UnityEditor.Experimental.GraphView" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:complexType name="StickyNoteType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="StickyNote" substitutionGroup="engine:VisualElement" xmlns:q1="UnityEditor.Experimental.GraphView" type="q1:StickyNoteType" />
|
||||||
|
<xs:complexType name="PillType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="highlighted" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="Pill" substitutionGroup="engine:VisualElement" xmlns:q2="UnityEditor.Experimental.GraphView" type="q2:PillType" />
|
||||||
|
<xs:complexType name="ResizableElementType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ResizableElement" substitutionGroup="engine:VisualElement" xmlns:q3="UnityEditor.Experimental.GraphView" type="q3:ResizableElementType" />
|
||||||
|
</xs:schema>
|
50
ColourMeOKGame/UIElementsSchema/UnityEditor.Overlays.xsd
Normal file
50
ColourMeOKGame/UIElementsSchema/UnityEditor.Overlays.xsd
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" targetNamespace="UnityEditor.Overlays" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:complexType name="ToolbarOverlayContainerType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="horizontal" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="supported-overlay-layout" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToolbarOverlayContainer" substitutionGroup="engine:VisualElement" type="ToolbarOverlayContainerType" />
|
||||||
|
<xs:complexType name="OverlayContainerType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="horizontal" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="supported-overlay-layout" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="OverlayContainer" substitutionGroup="engine:VisualElement" type="OverlayContainerType" />
|
||||||
|
</xs:schema>
|
|
@ -0,0 +1,606 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" targetNamespace="UnityEditor.PackageManager.UI.Internal" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:complexType name="MultiSelectDetailsType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="MultiSelectDetails" substitutionGroup="engine:VisualElement" xmlns:q1="UnityEditor.PackageManager.UI.Internal" type="q1:MultiSelectDetailsType" />
|
||||||
|
<xs:complexType name="PackagePlatformListType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackagePlatformList" substitutionGroup="engine:VisualElement" xmlns:q2="UnityEditor.PackageManager.UI.Internal" type="q2:PackagePlatformListType" />
|
||||||
|
<xs:complexType name="PackageListViewType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageListView" substitutionGroup="engine:VisualElement" xmlns:q3="UnityEditor.PackageManager.UI.Internal" type="q3:PackageListViewType" />
|
||||||
|
<xs:complexType name="PackageTagLabelType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="enable-rich-text" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="parse-escape-sequences" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="display-tooltip-when-elided" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageTagLabel" substitutionGroup="engine:VisualElement" xmlns:q4="UnityEditor.PackageManager.UI.Internal" type="q4:PackageTagLabelType" />
|
||||||
|
<xs:complexType name="AlertType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="Alert" substitutionGroup="engine:VisualElement" xmlns:q5="UnityEditor.PackageManager.UI.Internal" type="q5:AlertType" />
|
||||||
|
<xs:complexType name="PackageDetailsHeaderType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageDetailsHeader" substitutionGroup="engine:VisualElement" xmlns:q6="UnityEditor.PackageManager.UI.Internal" type="q6:PackageDetailsHeaderType" />
|
||||||
|
<xs:complexType name="ProgressBarType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ProgressBar" substitutionGroup="engine:VisualElement" xmlns:q7="UnityEditor.PackageManager.UI.Internal" type="q7:ProgressBarType" />
|
||||||
|
<xs:complexType name="PackageStatusBarType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageStatusBar" substitutionGroup="engine:VisualElement" xmlns:q8="UnityEditor.PackageManager.UI.Internal" type="q8:PackageStatusBarType" />
|
||||||
|
<xs:complexType name="PackageDetailsLinksType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageDetailsLinks" substitutionGroup="engine:VisualElement" xmlns:q9="UnityEditor.PackageManager.UI.Internal" type="q9:PackageDetailsLinksType" />
|
||||||
|
<xs:complexType name="PackageManagerToolbarType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageManagerToolbar" substitutionGroup="engine:VisualElement" xmlns:q10="UnityEditor.PackageManager.UI.Internal" type="q10:PackageManagerToolbarType" />
|
||||||
|
<xs:complexType name="PackageLoadBarType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageLoadBar" substitutionGroup="engine:VisualElement" xmlns:q11="UnityEditor.PackageManager.UI.Internal" type="q11:PackageLoadBarType" />
|
||||||
|
<xs:complexType name="TagLabelListType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="TagLabelList" substitutionGroup="engine:VisualElement" xmlns:q12="UnityEditor.PackageManager.UI.Internal" type="q12:TagLabelListType" />
|
||||||
|
<xs:complexType name="ScopedRegistriesSettingsType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ScopedRegistriesSettings" substitutionGroup="engine:VisualElement" xmlns:q13="UnityEditor.PackageManager.UI.Internal" type="q13:ScopedRegistriesSettingsType" />
|
||||||
|
<xs:complexType name="PackageListType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageList" substitutionGroup="engine:VisualElement" xmlns:q14="UnityEditor.PackageManager.UI.Internal" type="q14:PackageListType" />
|
||||||
|
<xs:complexType name="ExtendableToolbarMenuType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="enable-rich-text" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="parse-escape-sequences" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="display-tooltip-when-elided" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ExtendableToolbarMenu" substitutionGroup="engine:VisualElement" xmlns:q15="UnityEditor.PackageManager.UI.Internal" type="q15:ExtendableToolbarMenuType" />
|
||||||
|
<xs:complexType name="ToolbarWindowMenuType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="enable-rich-text" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="parse-escape-sequences" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="display-tooltip-when-elided" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToolbarWindowMenu" substitutionGroup="engine:VisualElement" xmlns:q16="UnityEditor.PackageManager.UI.Internal" type="q16:ToolbarWindowMenuType" />
|
||||||
|
<xs:complexType name="SelectableLabelType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="enable-rich-text" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="parse-escape-sequences" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="display-tooltip-when-elided" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="SelectableLabel" substitutionGroup="engine:VisualElement" xmlns:q17="UnityEditor.PackageManager.UI.Internal" type="q17:SelectableLabelType" />
|
||||||
|
<xs:complexType name="PackageDetailsBodyType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageDetailsBody" substitutionGroup="engine:VisualElement" xmlns:q18="UnityEditor.PackageManager.UI.Internal" type="q18:PackageDetailsBodyType" />
|
||||||
|
<xs:complexType name="PackageDetailsType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageDetails" substitutionGroup="engine:VisualElement" xmlns:q19="UnityEditor.PackageManager.UI.Internal" type="q19:PackageDetailsType" />
|
||||||
|
<xs:complexType name="InProgressViewType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="InProgressView" substitutionGroup="engine:VisualElement" xmlns:q20="UnityEditor.PackageManager.UI.Internal" type="q20:InProgressViewType" />
|
||||||
|
<xs:simpleType name="PackageListScrollView_mode_Type">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="Vertical" />
|
||||||
|
<xs:enumeration value="Horizontal" />
|
||||||
|
<xs:enumeration value="VerticalAndHorizontal" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
<xs:simpleType name="PackageListScrollView_nested-interaction-kind_Type">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="Default" />
|
||||||
|
<xs:enumeration value="StopScrolling" />
|
||||||
|
<xs:enumeration value="ForwardScrolling" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
<xs:simpleType name="PackageListScrollView_horizontal-scroller-visibility_Type">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="Auto" />
|
||||||
|
<xs:enumeration value="AlwaysVisible" />
|
||||||
|
<xs:enumeration value="Hidden" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
<xs:simpleType name="PackageListScrollView_vertical-scroller-visibility_Type">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="Auto" />
|
||||||
|
<xs:enumeration value="AlwaysVisible" />
|
||||||
|
<xs:enumeration value="Hidden" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
<xs:simpleType name="PackageListScrollView_touch-scroll-type_Type">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="Unrestricted" />
|
||||||
|
<xs:enumeration value="Elastic" />
|
||||||
|
<xs:enumeration value="Clamped" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
<xs:complexType name="PackageListScrollViewType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Vertical" name="mode" xmlns:q21="UnityEditor.PackageManager.UI.Internal" type="q21:PackageListScrollView_mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="Default" name="nested-interaction-kind" xmlns:q22="UnityEditor.PackageManager.UI.Internal" type="q22:PackageListScrollView_nested-interaction-kind_Type" use="optional" />
|
||||||
|
<xs:attribute default="false" name="show-horizontal-scroller" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="show-vertical-scroller" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="Auto" name="horizontal-scroller-visibility" xmlns:q23="UnityEditor.PackageManager.UI.Internal" type="q23:PackageListScrollView_horizontal-scroller-visibility_Type" use="optional" />
|
||||||
|
<xs:attribute default="Auto" name="vertical-scroller-visibility" xmlns:q24="UnityEditor.PackageManager.UI.Internal" type="q24:PackageListScrollView_vertical-scroller-visibility_Type" use="optional" />
|
||||||
|
<xs:attribute default="-1" name="horizontal-page-size" type="xs:float" use="optional" />
|
||||||
|
<xs:attribute default="-1" name="vertical-page-size" type="xs:float" use="optional" />
|
||||||
|
<xs:attribute default="18" name="mouse-wheel-scroll-size" type="xs:float" use="optional" />
|
||||||
|
<xs:attribute default="Clamped" name="touch-scroll-type" xmlns:q25="UnityEditor.PackageManager.UI.Internal" type="q25:PackageListScrollView_touch-scroll-type_Type" use="optional" />
|
||||||
|
<xs:attribute default="0.135" name="scroll-deceleration-rate" type="xs:float" use="optional" />
|
||||||
|
<xs:attribute default="0.1" name="elasticity" type="xs:float" use="optional" />
|
||||||
|
<xs:attribute default="16" name="elastic-animation-interval-ms" type="xs:long" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageListScrollView" substitutionGroup="engine:VisualElement" xmlns:q26="UnityEditor.PackageManager.UI.Internal" type="q26:PackageListScrollViewType" />
|
||||||
|
<xs:complexType name="LoadingSpinnerType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="LoadingSpinner" substitutionGroup="engine:VisualElement" xmlns:q27="UnityEditor.PackageManager.UI.Internal" type="q27:LoadingSpinnerType" />
|
||||||
|
<xs:complexType name="PackageDetailsTabViewType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageDetailsTabView" substitutionGroup="engine:VisualElement" xmlns:q28="UnityEditor.PackageManager.UI.Internal" type="q28:PackageDetailsTabViewType" />
|
||||||
|
<xs:complexType name="PackageToolbarType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageToolbar" substitutionGroup="engine:VisualElement" xmlns:q29="UnityEditor.PackageManager.UI.Internal" type="q29:PackageToolbarType" />
|
||||||
|
<xs:complexType name="DropdownButtonType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="DropdownButton" substitutionGroup="engine:VisualElement" xmlns:q30="UnityEditor.PackageManager.UI.Internal" type="q30:DropdownButtonType" />
|
||||||
|
<xs:complexType name="PackageSubPageFilterBarType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PackageSubPageFilterBar" substitutionGroup="engine:VisualElement" xmlns:q31="UnityEditor.PackageManager.UI.Internal" type="q31:PackageSubPageFilterBarType" />
|
||||||
|
</xs:schema>
|
28
ColourMeOKGame/UIElementsSchema/UnityEditor.Search.xsd
Normal file
28
ColourMeOKGame/UIElementsSchema/UnityEditor.Search.xsd
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" targetNamespace="UnityEditor.Search" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:complexType name="ObjectFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="null" name="type" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ObjectField" substitutionGroup="engine:VisualElement" xmlns:q1="UnityEditor.Search" type="q1:ObjectFieldType" />
|
||||||
|
</xs:schema>
|
|
@ -0,0 +1,46 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" targetNamespace="UnityEditor.ShortcutManagement" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:complexType name="ShortcutSearchFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ShortcutSearchField" substitutionGroup="engine:VisualElement" xmlns:q1="UnityEditor.ShortcutManagement" type="q1:ShortcutSearchFieldType" />
|
||||||
|
<xs:complexType name="ShortcutPopupSearchFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ShortcutPopupSearchField" substitutionGroup="engine:VisualElement" xmlns:q2="UnityEditor.ShortcutManagement" type="q2:ShortcutPopupSearchFieldType" />
|
||||||
|
</xs:schema>
|
|
@ -0,0 +1,25 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" targetNamespace="UnityEditor.UIElements.Debugger" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:complexType name="EventTypeSearchFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="EventTypeSearchField" substitutionGroup="engine:VisualElement" xmlns:q1="UnityEditor.UIElements.Debugger" type="q1:EventTypeSearchFieldType" />
|
||||||
|
</xs:schema>
|
567
ColourMeOKGame/UIElementsSchema/UnityEditor.UIElements.xsd
Normal file
567
ColourMeOKGame/UIElementsSchema/UnityEditor.UIElements.xsd
Normal file
|
@ -0,0 +1,567 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:editor="UnityEditor.UIElements" xmlns:engine="UnityEngine.UIElements" xmlns="UnityEditor.Overlays" elementFormDefault="qualified" targetNamespace="UnityEditor.UIElements" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:import schemaLocation="UnityEngine.UIElements.xsd" namespace="UnityEngine.UIElements" />
|
||||||
|
<xs:simpleType name="PropertyControl_value-type_Type">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="Long" />
|
||||||
|
<xs:enumeration value="Double" />
|
||||||
|
<xs:enumeration value="Int" />
|
||||||
|
<xs:enumeration value="Float" />
|
||||||
|
<xs:enumeration value="String" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
<xs:complexType name="PropertyControlType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute name="value-type" type="editor:PropertyControl_value-type_Type" use="required" />
|
||||||
|
<xs:attribute default="" name="value" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PropertyControl" substitutionGroup="engine:VisualElement" type="editor:PropertyControlType" />
|
||||||
|
<xs:complexType name="VisualSplitterType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="VisualSplitter" substitutionGroup="engine:VisualElement" type="editor:VisualSplitterType" />
|
||||||
|
<xs:complexType name="TagFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="value" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="TagField" substitutionGroup="engine:VisualElement" type="editor:TagFieldType" />
|
||||||
|
<xs:complexType name="GradientFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="GradientField" substitutionGroup="engine:VisualElement" type="editor:GradientFieldType" />
|
||||||
|
<xs:complexType name="ColorFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="RGBA(0.000, 0.000, 0.000, 1.000)" name="value" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="show-eye-dropper" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="true" name="show-alpha" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="hdr" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ColorField" substitutionGroup="engine:VisualElement" type="editor:ColorFieldType" />
|
||||||
|
<xs:complexType name="InspectorElementType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Ignore" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="InspectorElement" substitutionGroup="engine:VisualElement" type="editor:InspectorElementType" />
|
||||||
|
<xs:complexType name="ObjectFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="allow-scene-objects" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="UnityEngine.Object" name="type" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ObjectField" substitutionGroup="engine:VisualElement" type="editor:ObjectFieldType" />
|
||||||
|
<xs:complexType name="ToolbarToggleType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="value" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToolbarToggle" substitutionGroup="engine:VisualElement" type="editor:ToolbarToggleType" />
|
||||||
|
<xs:complexType name="PropertyFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="PropertyField" substitutionGroup="engine:VisualElement" type="editor:PropertyFieldType" />
|
||||||
|
<xs:complexType name="ToolbarMenuType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="enable-rich-text" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="parse-escape-sequences" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="display-tooltip-when-elided" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToolbarMenu" substitutionGroup="engine:VisualElement" type="editor:ToolbarMenuType" />
|
||||||
|
<xs:complexType name="MaskFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="choices" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="0" name="value" type="xs:int" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="MaskField" substitutionGroup="engine:VisualElement" type="editor:MaskFieldType" />
|
||||||
|
<xs:complexType name="UnityEventItemType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="UnityEventItem" substitutionGroup="engine:VisualElement" type="editor:UnityEventItemType" />
|
||||||
|
<xs:complexType name="ToolbarPopupSearchFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToolbarPopupSearchField" substitutionGroup="engine:VisualElement" type="editor:ToolbarPopupSearchFieldType" />
|
||||||
|
<xs:complexType name="LayerMaskFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="0" name="value" type="xs:int" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="LayerMaskField" substitutionGroup="engine:VisualElement" type="editor:LayerMaskFieldType" />
|
||||||
|
<xs:complexType name="ToolbarSpacerType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToolbarSpacer" substitutionGroup="engine:VisualElement" type="editor:ToolbarSpacerType" />
|
||||||
|
<xs:complexType name="EnumFlagsFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="null" name="type" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="value" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="false" name="include-obsolete-values" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="EnumFlagsField" substitutionGroup="engine:VisualElement" type="editor:EnumFlagsFieldType" />
|
||||||
|
<xs:complexType name="ToolbarBreadcrumbsType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToolbarBreadcrumbs" substitutionGroup="engine:VisualElement" type="editor:ToolbarBreadcrumbsType" />
|
||||||
|
<xs:complexType name="MinMaxGradientFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="MinMaxGradientField" substitutionGroup="engine:VisualElement" type="editor:MinMaxGradientFieldType" />
|
||||||
|
<xs:complexType name="ToolbarType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="Toolbar" substitutionGroup="engine:VisualElement" type="editor:ToolbarType" />
|
||||||
|
<xs:complexType name="LayerFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="0" name="value" type="xs:int" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="LayerField" substitutionGroup="engine:VisualElement" type="editor:LayerFieldType" />
|
||||||
|
<xs:complexType name="CurveFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="label" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="CurveField" substitutionGroup="engine:VisualElement" type="editor:CurveFieldType" />
|
||||||
|
<xs:complexType name="ToolbarSearchFieldType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToolbarSearchField" substitutionGroup="engine:VisualElement" type="editor:ToolbarSearchFieldType" />
|
||||||
|
<xs:complexType name="DropdownOptionListItemType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xs:element ref="engine:VisualElement" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="false" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="DropdownOptionListItem" substitutionGroup="engine:VisualElement" type="editor:DropdownOptionListItemType" />
|
||||||
|
<xs:complexType name="ToolbarButtonType">
|
||||||
|
<xs:complexContent mixed="false">
|
||||||
|
<xs:restriction base="engine:VisualElementType">
|
||||||
|
<xs:attribute default="" name="name" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="view-data-key" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="Position" name="picking-mode" type="engine:VisualElement_picking-mode_Type" use="optional" />
|
||||||
|
<xs:attribute default="" name="tooltip" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="None" name="usage-hints" type="engine:VisualElement_usage-hints_Type" use="optional" />
|
||||||
|
<xs:attribute default="0" name="tabindex" type="xs:int" use="optional" />
|
||||||
|
<xs:attribute default="true" name="focusable" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="" name="class" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="content-container" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="style" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="binding-path" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="" name="text" type="xs:string" use="optional" />
|
||||||
|
<xs:attribute default="true" name="enable-rich-text" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="parse-escape-sequences" type="xs:boolean" use="optional" />
|
||||||
|
<xs:attribute default="false" name="display-tooltip-when-elided" type="xs:boolean" use="optional" />
|
||||||
|
<xs:anyAttribute processContents="lax" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:complexContent>
|
||||||
|
</xs:complexType>
|
||||||
|
<xs:element name="ToolbarButton" substitutionGroup="engine:VisualElement" type="editor:ToolbarButtonType" />
|
||||||
|
</xs:schema>
|
1459
ColourMeOKGame/UIElementsSchema/UnityEngine.UIElements.xsd
Normal file
1459
ColourMeOKGame/UIElementsSchema/UnityEngine.UIElements.xsd
Normal file
File diff suppressed because it is too large
Load diff
Reference in a new issue