{"id":21985551,"url":"https://github.com/ickshonpe/bevy-animated-text","last_synced_at":"2026-03-05T04:33:54.810Z","repository":{"id":248119755,"uuid":"827833464","full_name":"ickshonpe/bevy-animated-text","owner":"ickshonpe","description":"Basic animated text plugin for Bevy","archived":false,"fork":false,"pushed_at":"2024-07-12T14:25:35.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-14T04:53:08.126Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/ickshonpe.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":"2024-07-12T13:26:47.000Z","updated_at":"2024-07-12T14:25:38.000Z","dependencies_parsed_at":"2024-07-12T14:31:34.888Z","dependency_job_id":"69722ce5-acc9-47fa-82e6-a20245a52d57","html_url":"https://github.com/ickshonpe/bevy-animated-text","commit_stats":null,"previous_names":["ickshonpe/bevy-animated-text"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ickshonpe/bevy-animated-text","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ickshonpe%2Fbevy-animated-text","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ickshonpe%2Fbevy-animated-text/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ickshonpe%2Fbevy-animated-text/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ickshonpe%2Fbevy-animated-text/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ickshonpe","download_url":"https://codeload.github.com/ickshonpe/bevy-animated-text/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ickshonpe%2Fbevy-animated-text/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30110441,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T03:40:26.266Z","status":"ssl_error","status_checked_at":"2026-03-05T03:39:15.902Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2024-11-29T18:14:01.357Z","updated_at":"2026-03-05T04:33:54.793Z","avatar_url":"https://github.com/ickshonpe.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bevy-animated-text\n\nBasic animated text plugin for Bevy.\n\n### Usage\nAdd the `AnimatedTextPlugin` to your app and spawn an entity with a `TextAnimationBundle` together with either a `TextBundle` or `Text2dBundle`:\n```\nuse bevy::prelude::*;\nuse bevy_animated_text::*;\n\nfn setup(mut commands: Commands) {\n    commands.spawn(Camera2dBundle::default());\n    commands.spawn((\n        Text2dBundle {\n            text: Text::from_section(\n                \"Hello, World!\",\n                TextStyle {\n                    font_size: 50.,\n                    ..Default::default()\n                },\n            ),\n            ..default()\n        },\n        TextAnimationBundle::from(|i: usize, _, p: Vec2, t: f32| p + 50. * (t + i as f32).sin() * Vec2::Y),\n    ));\n}\n\nfn main() {\n    App::new()\n        .add_plugins((DefaultPlugins, AnimatedTextPlugin))\n        .add_systems(Startup, setup)\n        .run();\n}\n```\n\nUnfortunately in order to work nicely with Bevy's existing text implementation it's limited to only animating glyph positions.\n\n### Examples\n* ```cargo run --example hello_world```\n* ```cargo run --example text2d```\n* ```cargo run --example ui```\nThe `text2d` example is the most complete.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fickshonpe%2Fbevy-animated-text","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fickshonpe%2Fbevy-animated-text","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fickshonpe%2Fbevy-animated-text/lists"}