{"id":14960795,"url":"https://github.com/ernsur/ui-toolkit-plus","last_synced_at":"2025-04-04T09:06:30.155Z","repository":{"id":41141942,"uuid":"263395313","full_name":"ErnSur/UI-Toolkit-Plus","owner":"ErnSur","description":"Boilerplate Code Generation, Tabs, Reorderable Manipulator, Built-in USS Exporter","archived":false,"fork":false,"pushed_at":"2024-11-03T14:21:24.000Z","size":1236,"stargazers_count":212,"open_issues_count":7,"forks_count":12,"subscribers_count":6,"default_branch":"upm","last_synced_at":"2025-04-04T09:06:25.778Z","etag":null,"topics":["code-generation","ui-toolkit","unity","unity-editor","unity-ui","unity-uielements","unity3d"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ErnSur.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-12T16:44:55.000Z","updated_at":"2025-03-28T09:02:59.000Z","dependencies_parsed_at":"2024-01-14T01:41:12.873Z","dependency_job_id":"bfecc1ac-aada-4a65-a715-d93643780bba","html_url":"https://github.com/ErnSur/UI-Toolkit-Plus","commit_stats":{"total_commits":69,"total_committers":6,"mean_commits":11.5,"dds":0.3913043478260869,"last_synced_commit":"e954c009b99edad93d3f1144b23eb363be171878"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErnSur%2FUI-Toolkit-Plus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErnSur%2FUI-Toolkit-Plus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErnSur%2FUI-Toolkit-Plus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErnSur%2FUI-Toolkit-Plus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ErnSur","download_url":"https://codeload.github.com/ErnSur/UI-Toolkit-Plus/tar.gz/refs/heads/upm","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247149500,"owners_count":20891954,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["code-generation","ui-toolkit","unity","unity-editor","unity-ui","unity-uielements","unity3d"],"created_at":"2024-09-24T13:23:01.754Z","updated_at":"2025-04-04T09:06:30.131Z","avatar_url":"https://github.com/ErnSur.png","language":"C#","readme":"# UI Toolkit Plus\n![license](https://img.shields.io/github/license/ErnSur/UI-Toolkit-Plus)\n![UnityVersion](https://img.shields.io/static/v1?label=unity\u0026message=2021.3%2B\u0026color=blue\u0026style=flat\u0026logo=Unity)\n[![openupm](https://img.shields.io/npm/v/com.quickeye.ui-toolkit-plus?label=openupm\u0026registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.quickeye.ui-toolkit-plus/)\n[![HowToInstall](https://img.shields.io/badge/-How%20To%20Install-gray)](https://docs.unity3d.com/Manual/upm-ui-giturl.html)\n### About\nReusable features for UI Toolkit runtime and editor.\n\n\n### UI Code Generation\n\nYou can generate a partial C# class from the UXML file.\n\nGiven the following UXML:\n```xml\n\u003cui:VisualElement\u003e\n    \u003cui:Label name=\"title\" /\u003e\n\u003c/ui:VisualElement\u003e\n\u003cui:VisualElement name=\"menu\"\u003e\n    \u003cui:Button name=\"confirm-button\" /\u003e\n\u003c/ui:VisualElement\u003e\n```\nTool generates C# script:\n```csharp\npartial class UXMLFileName\n{\n    private Label title;\n    private VisualElement menu;\n    private Button confirmButton;\n\n    private void AssignQueryResults(VisualElement root)\n    {\n        title = root.Q\u003cLabel\u003e(\"title\");\n        menu = root.Q\u003cVisualElement\u003e(\"menu\");\n        confirmButton = root.Q\u003cButton\u003e(\"confirm-button\");\n    }\n}\n```\n\n- [Detailed documentation about code generation](Documentation~/UxmlCodeGeneration.md)\n- [`QAttribute` approach to query assignment](Documentation~/QAttribute.md)\n\n### Style Sheet Exporter\n\u003e Open from context menu: __Window/UI Toolkit/Style Sheet Exporter__  \n\u003e Available with Unity 2022.1 and newer\n\nEver wanted to see how Unity's built-in controls are styled?  \nWith this tool, you can! Export style sheet assets used by Unity Editor to USS files.\n\n![Style Sheet Exporter Window](Documentation~/style-sheet-exporter.png)\n\n### `TabGroup`, `Tab` and `TabDropdown`\n\u003e Sample project: Samples/Tabs\n\n![](Documentation~/tabs.gif)\n\n### `ReorderableManipulator`\n\u003e Sample project: Samples/ReorderableCards\n\n\u003cimg src=\"Documentation~/reorderable.gif\" width=\"400\"\u003e\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fernsur%2Fui-toolkit-plus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fernsur%2Fui-toolkit-plus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fernsur%2Fui-toolkit-plus/lists"}