{"id":15160579,"url":"https://github.com/eviltwo/unityextensions","last_synced_at":"2026-01-29T22:37:39.904Z","repository":{"id":249786934,"uuid":"832558135","full_name":"eviltwo/UnityExtensions","owner":"eviltwo","description":"Extensions for Unity.","archived":false,"fork":false,"pushed_at":"2025-02-06T17:05:09.000Z","size":127,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T19:54:56.635Z","etag":null,"topics":["unity","unity-extension","unity3d","upm-package"],"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/eviltwo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["eviltwo"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"custom":null}},"created_at":"2024-07-23T09:08:16.000Z","updated_at":"2025-02-06T17:05:12.000Z","dependencies_parsed_at":"2024-07-23T11:06:38.940Z","dependency_job_id":"c67f67bf-76c1-406a-b3cb-5385afe7434c","html_url":"https://github.com/eviltwo/UnityExtensions","commit_stats":{"total_commits":34,"total_committers":1,"mean_commits":34.0,"dds":0.0,"last_synced_commit":"d6638ab773e65ffcd1d516cff5dda8c00af7cb15"},"previous_names":["eviltwo/unityextensions"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eviltwo%2FUnityExtensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eviltwo%2FUnityExtensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eviltwo%2FUnityExtensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eviltwo%2FUnityExtensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eviltwo","download_url":"https://codeload.github.com/eviltwo/UnityExtensions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247721929,"owners_count":20985083,"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":["unity","unity-extension","unity3d","upm-package"],"created_at":"2024-09-26T23:02:22.807Z","updated_at":"2026-01-29T22:37:39.854Z","avatar_url":"https://github.com/eviltwo.png","language":"C#","funding_links":["https://github.com/sponsors/eviltwo"],"categories":[],"sub_categories":[],"readme":"# eviltwo.UnityExtensions\nExtensions for Unity. It will be expanded according to my game development.\n\n# Contents\n## Editor\n- [CreateEmptyNeighbor](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Editor/Hierarchy/CreateEmptyNeighbor.cs)\n  - Adding menu \"GameObject/Create Asset Neighbor\" to under \"Create Empty Parent\".\n- [EditorLocaleResetter](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Editor/Localization/EditorLocaleResetter.cs)\n  - When the game playback is stopped while using the Localization package, the Locale will be reset.\n \n## Runtime\n- [FilteredEventRelay](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/Events/FilteredEventRelay.cs)\n- [DontDestroyOnLoad](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/Objects/DontDestroyOnLoad.cs)\n- [SingletonGameObject](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/Objects/SingletonGameObject.cs)\n- [PlatformDataPathProvider](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/Platforms/PlatformDataPathProvider.cs)\n  - Change the save data location depending on whether the game was launched from Steam. Requires Steamworks.NET.\n- [DataKeeper](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/Scenes/DataKeeper.cs)\n  - A static class for passing data across scenes.\n- [SteamManager](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/Steamworks/SteamManager.cs)\n  - for Steamworks.NET\n- [TimeRequestManager](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/Time/TimeRequestManager.cs)\n  - A manager class that handles duplicate time scale changes.\n- [AutoSelectionForButtonDevice](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/UI/AutoSelectionForButtonDevice.cs)\n  - Automatically selects the first selectable UI when the keyboard or gamepad is enabled.\n- [CancelEventChain](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/UI/CancelEventChain.cs)\n  - Pass the cancel event to the parent UI.\n- [CursorActiveControllerForGamepad](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/UI/CursorActiveControllerForGamepad.cs)\n  - Hide the cursor when the gamepad is enabled.\n- [LayoutSizeLimiter](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/UI/LayoutSizeLimiter.cs)\n - Limit the preferredWidth and preferredHeight by the maximum value.\n- [ScrollbarNavigationSwitcher](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/UI/ScrollbarNavigationSwitcher.cs) \n  - enables navigation when the scrollbar is at either end.\n- [Stepper](UnityExtensions/Assets/eviltwo.UnityExtensions/Scripts/Runtime/UI/Stepper.cs)\n  - A UI where the value increases or decreases by 1 when a button is pressed.\n\n# Install with UPM\n```\nhttps://github.com/eviltwo/UnityExtensions.git?path=UnityExtensions/Assets/eviltwo.UnityExtensions\n```\n\n# Support My Work\nAs a solo developer, your financial support would be greatly appreciated and helps me continue working on this project.\n- [Asset Store](https://assetstore.unity.com/publishers/12117)\n- [Steam](https://store.steampowered.com/curator/45066588)\n- [GitHub Sponsors](https://github.com/sponsors/eviltwo)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feviltwo%2Funityextensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feviltwo%2Funityextensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feviltwo%2Funityextensions/lists"}