├── .github └── FUNDING.yml ├── .gitignore ├── .idea └── .idea.UnityUxmlGenerator │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── LICENSE ├── README.md ├── UnityUxmlGenerator.sln ├── UnityUxmlGenerator.sln.DotSettings └── src ├── UnityUxmlGenerator.UnityPackage ├── .gitattributes ├── .gitignore ├── Assets │ ├── Plugins.meta │ ├── Plugins │ │ ├── UnityUxmlGenerator.meta │ │ └── UnityUxmlGenerator │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ ├── UnityUxmlGenerator.dll │ │ │ └── UnityUxmlGenerator.dll.meta │ │ │ ├── package.json │ │ │ └── package.json.meta │ ├── Scenes.meta │ └── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── boot.config └── UnityUxmlGenerator ├── Captures ├── BaseCapture.cs ├── UxmlFactoryCapture.cs └── UxmlTraitsCapture.cs ├── Diagnostics ├── DiagnosticDescriptors.cs └── DiagnosticExtensions.cs ├── Extensions ├── BaseTypeDeclarationSyntaxExtensions.cs ├── PropertySyntaxExtensions.cs ├── StringBuilderExtensions.cs ├── StringExtensions.cs ├── SyntaxNodeExtensions.cs └── TypeSyntaxExtensions.cs ├── Structs └── UxmlAttributeInfo.cs ├── SyntaxReceivers ├── BaseReceiver.cs ├── UxmlFactoryReceiver.cs ├── UxmlTraitsReceiver.cs └── VisualElementReceiver.cs ├── System.Runtime.CompilerServices └── IsExternalInit.cs ├── UnityUxmlGenerator.csproj ├── Usings.cs ├── UxmlGenerator.Attributes.cs ├── UxmlGenerator.Factory.cs ├── UxmlGenerator.Traits.cs ├── UxmlGenerator.Widgets.cs └── UxmlGenerator.cs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.UnityUxmlGenerator/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/.idea/.idea.UnityUxmlGenerator/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.UnityUxmlGenerator/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/.idea/.idea.UnityUxmlGenerator/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.UnityUxmlGenerator/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/.idea/.idea.UnityUxmlGenerator/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.UnityUxmlGenerator/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/.idea/.idea.UnityUxmlGenerator/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/README.md -------------------------------------------------------------------------------- /UnityUxmlGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/UnityUxmlGenerator.sln -------------------------------------------------------------------------------- /UnityUxmlGenerator.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/UnityUxmlGenerator.sln.DotSettings -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/.gitattributes -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/.gitignore -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Plugins.meta -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator.meta -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/Runtime.meta -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/Runtime/UnityUxmlGenerator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/Runtime/UnityUxmlGenerator.dll -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/Runtime/UnityUxmlGenerator.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/Runtime/UnityUxmlGenerator.dll.meta -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/package.json -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Plugins/UnityUxmlGenerator/package.json.meta -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Scenes.meta -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Packages/manifest.json -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/Packages/packages-lock.json -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator.UnityPackage/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /src/UnityUxmlGenerator.UnityPackage/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Captures/BaseCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Captures/BaseCapture.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Captures/UxmlFactoryCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Captures/UxmlFactoryCapture.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Captures/UxmlTraitsCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Captures/UxmlTraitsCapture.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Diagnostics/DiagnosticDescriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Diagnostics/DiagnosticDescriptors.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Diagnostics/DiagnosticExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Diagnostics/DiagnosticExtensions.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Extensions/BaseTypeDeclarationSyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Extensions/BaseTypeDeclarationSyntaxExtensions.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Extensions/PropertySyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Extensions/PropertySyntaxExtensions.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Extensions/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Extensions/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Extensions/SyntaxNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Extensions/SyntaxNodeExtensions.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Extensions/TypeSyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Extensions/TypeSyntaxExtensions.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Structs/UxmlAttributeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Structs/UxmlAttributeInfo.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/SyntaxReceivers/BaseReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/SyntaxReceivers/BaseReceiver.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/SyntaxReceivers/UxmlFactoryReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/SyntaxReceivers/UxmlFactoryReceiver.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/SyntaxReceivers/UxmlTraitsReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/SyntaxReceivers/UxmlTraitsReceiver.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/SyntaxReceivers/VisualElementReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/SyntaxReceivers/VisualElementReceiver.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/System.Runtime.CompilerServices/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/System.Runtime.CompilerServices/IsExternalInit.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/UnityUxmlGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/UnityUxmlGenerator.csproj -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/Usings.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/UxmlGenerator.Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/UxmlGenerator.Attributes.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/UxmlGenerator.Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/UxmlGenerator.Factory.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/UxmlGenerator.Traits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/UxmlGenerator.Traits.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/UxmlGenerator.Widgets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/UxmlGenerator.Widgets.cs -------------------------------------------------------------------------------- /src/UnityUxmlGenerator/UxmlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraStack/UnityUxmlGenerator/HEAD/src/UnityUxmlGenerator/UxmlGenerator.cs --------------------------------------------------------------------------------