{"id":23066424,"url":"https://github.com/xjine/unity_xgui","last_synced_at":"2025-08-15T11:33:01.884Z","repository":{"id":53894644,"uuid":"112870389","full_name":"XJINE/Unity_XGUI","owner":"XJINE","description":"Utilities to make a lot of IMGUI(OnGUI). It is easy \u0026 fast. ","archived":false,"fork":false,"pushed_at":"2024-06-24T10:29:39.000Z","size":1609,"stargazers_count":30,"open_issues_count":0,"forks_count":3,"subscribers_count":7,"default_branch":"main","last_synced_at":"2024-06-24T12:06:18.144Z","etag":null,"topics":["assets","unity"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/XJINE.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2017-12-02T19:25:52.000Z","updated_at":"2024-06-24T10:29:42.000Z","dependencies_parsed_at":"2024-06-24T11:55:33.492Z","dependency_job_id":"5345c328-5e0d-43d1-ae08-b8b4753cdceb","html_url":"https://github.com/XJINE/Unity_XGUI","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XJINE%2FUnity_XGUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XJINE%2FUnity_XGUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XJINE%2FUnity_XGUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XJINE%2FUnity_XGUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/XJINE","download_url":"https://codeload.github.com/XJINE/Unity_XGUI/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229910988,"owners_count":18143229,"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":["assets","unity"],"created_at":"2024-12-16T05:13:17.772Z","updated_at":"2024-12-16T05:13:18.409Z","avatar_url":"https://github.com/XJINE.png","language":"C#","readme":"# Unity_XGUI\n\nUtilities to make a lot of IMGUI(OnGUI). It is easy \u0026 fast.\n\n## Importing\n\nYou can use Package Manager or import it directly.\n\n```\nhttps://github.com/XJINE/Unity_XGUI.git?path=Assets/Packages/XGUI\n```\n\n### Dependencies\n\nThis project use following resources.\n\n- https://github.com/XJINE/Unity_ExpressionParser\n\n## Various GUI\n\n\u003cimg src=\"https://github.com/XJINE/Unity_XGUI/blob/main/screenshot01.png\" width=\"100%\" height=\"auto\" /\u003e\n\nXGUI includes following type GUI.\n\n\u003ctable\u003e\n\u003ctr\u003e\u003ctd\u003e int     \u003c/td\u003e\u003ctd\u003e float     \u003c/td\u003e\u003ctd\u003e string      \u003c/td\u003e\u003ctd\u003e bool       \u003c/td\u003e\u003ctd\u003e Enum       \u003c/td\u003e\u003c/tr\u003e\n\u003ctr\u003e\u003ctd\u003e Vector2 \u003c/td\u003e\u003ctd\u003e Vector3   \u003c/td\u003e\u003ctd\u003e Vector4     \u003c/td\u003e\u003ctd\u003e Vector2Int \u003c/td\u003e\u003ctd\u003e Vector3Int \u003c/td\u003e\u003c/tr\u003e\n\u003ctr\u003e\u003ctd\u003e Color   \u003c/td\u003e\u003ctd\u003e Matrix4x4 \u003c/td\u003e\u003ctd\u003e IList\u0026lt;T\u0026gt; (List\u0026lt;T\u0026gt;, T[]) \u003c/td\u003e\u003c/tr\u003e\n\u003c/table\u003e\n\n## Various Panel\n\n``FlexWindow`` automatically scale its width and height when needed.\n\n``ScrollPanel`` shows scroll handle when needed.\n\n``FoldoutPanel`` \u0026 ``TabPanel`` hide or group some GUIs.\n\n\n## FlexGUI\n\nFlexGUI provides common feels to make GUI.\n\nUsually, it is needed to define corresponding GUI.\n\n```csharp\nBoolGUI   _boolGUI   = new (\"Bool\"  );\nStringGUI _stringGUI = new (\"String\") { Width = 250 };\nIntGUI    _intGUI    = new (\"Int\"   ) { MinValue = 0, MaxValue = 100 };\n```\n\nFlexGUI needs only a Type of the value.\n\n```csharp\nFlexGUI\u003cbool\u003e   _boolGUI   = new (\"Bool\"  );\nFlexGUI\u003cstring\u003e _stringGUI = new (\"String\") { Width = 250 };\nFlexGUI\u003cint\u003e    _intGUI    = new (\"Int\"   ) { MinValue = 0, MaxValue = 100 };\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxjine%2Funity_xgui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxjine%2Funity_xgui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxjine%2Funity_xgui/lists"}