{"id":18710375,"url":"https://github.com/sgaumin/animexpress","last_synced_at":"2026-02-28T18:01:50.380Z","repository":{"id":133799010,"uuid":"548726030","full_name":"sgaumin/AnimExpress","owner":"sgaumin","description":"Lightweight Unity Utility to quickly setup 2D sprite-sheet animations","archived":false,"fork":false,"pushed_at":"2024-06-17T11:42:52.000Z","size":980,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-12T11:43:18.715Z","etag":null,"topics":["csharp","editor","extension","gamedev","tool","unity","unity-editor","unity2d"],"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/sgaumin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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":"2022-10-10T04:50:41.000Z","updated_at":"2024-11-06T21:07:58.000Z","dependencies_parsed_at":"2024-03-06T04:31:38.945Z","dependency_job_id":"140c0281-6a41-4a7d-a2a2-6a2ca6713505","html_url":"https://github.com/sgaumin/AnimExpress","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/sgaumin/AnimExpress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sgaumin%2FAnimExpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sgaumin%2FAnimExpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sgaumin%2FAnimExpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sgaumin%2FAnimExpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sgaumin","download_url":"https://codeload.github.com/sgaumin/AnimExpress/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sgaumin%2FAnimExpress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29946463,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T17:57:52.716Z","status":"ssl_error","status_checked_at":"2026-02-28T17:57:31.974Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["csharp","editor","extension","gamedev","tool","unity","unity-editor","unity2d"],"created_at":"2024-11-07T12:33:40.218Z","updated_at":"2026-02-28T18:01:50.360Z","avatar_url":"https://github.com/sgaumin.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# Anim-Express\n\n[![Unity 2020.3](https://img.shields.io/badge/unity-2020.3%2B-blue.svg)](https://unity3d.com/get-unity/download)\n[![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://github.com/sgaumin/AnimExpress/blob/main/LICENSE.md)\n[![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/Seb_gamedev.svg?style=social\u0026label=Follow%20%40Seb_gamedev)](https://twitter.com/Seb_gamedev)\n\n**Lightweight Unity Utility to quickly setup 2D animations**\n\u003c/div\u003e\n\n## Installation\nYou can install this library by the steps below.\n\n1. Select **Window \u003e Package Manager** from the menu bar.\n2. Click the **+** button in the upper left corner of the window and select **Add package from git URL...**.\n3. Enter the following URL in the input field and click **Add**.\n\n```\nhttps://github.com/sgaumin/AnimExpress.git\n```\n\n## Setup\n\n### Animation Asset\nAfter importing texture in the project, we can use utility method to generate animation assets. \n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"80%\" src=\"Documentation/animationSetup.gif\" alt=\"AnimationExpressSetup\"\u003e\n\u003c/p\u003e\n\n### Animator Component\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"80%\" src=\"Documentation/animator.gif\" alt=\"AnimatorExpress\"\u003e\n\u003c/p\u003e\n\n## Features\n\n### Play Animation\n```csharp\nanimator = GetComponent\u003cAnimatorExpress\u003e();\nanimator.Play(\"AnimationName\");\n```\n\n### Stop Animation\n```csharp\nanimator = GetComponent\u003cAnimatorExpress\u003e();\nanimator.Stop();\n```\n\n### Event Subscription\n```csharp\nprivate AnimatorExpress animator;\n\nprivate void Awake()\n{\n  animator = GetComponent\u003cAnimatorExpress\u003e();\n\n  animator.AddListener(\"FrameName_0\", CallBack1);\n  animator.AddListener(\"FrameName_1\", CallBack2);\n}\n\nprivate void OnDestroy()\n{\n  animator.RemoveListener(\"FrameName_0\", CallBack1);\n  animator.RemoveListener(\"FrameName_1\", CallBack2);\n}\n```\n\n## Support\n\nIf you ever come across any issues please feel free to report to the [Issues](https://github.com/sgaumin/AnimExpress/issues) page on this repository. All feedback is appreciated, and will be\ntaken on board for any future updates. \n\n## License\n\n[MIT License](https://github.com/sgaumin/AnimExpress/blob/main/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsgaumin%2Fanimexpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsgaumin%2Fanimexpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsgaumin%2Fanimexpress/lists"}