{"id":19541436,"url":"https://github.com/ickk/bevy_raylib","last_synced_at":"2025-09-07T14:05:32.517Z","repository":{"id":200071445,"uuid":"704752527","full_name":"ickk/bevy_raylib","owner":"ickk","description":"raylib plugin for bevy","archived":false,"fork":false,"pushed_at":"2023-10-15T01:12:59.000Z","size":10,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2024-04-20T08:12:12.354Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ickk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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":"2023-10-14T01:55:27.000Z","updated_at":"2023-10-15T02:29:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"57046e99-d1af-43a8-876d-fc9a28d27ca2","html_url":"https://github.com/ickk/bevy_raylib","commit_stats":null,"previous_names":["ickk/bevy_raylib"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ickk%2Fbevy_raylib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ickk%2Fbevy_raylib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ickk%2Fbevy_raylib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ickk%2Fbevy_raylib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ickk","download_url":"https://codeload.github.com/ickk/bevy_raylib/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240795176,"owners_count":19858760,"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":[],"created_at":"2024-11-11T03:10:28.950Z","updated_at":"2025-02-26T05:18:32.691Z","avatar_url":"https://github.com/ickk.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"bevy_raylib\n===========\n\nThis is a very simple raylib plugin for bevy.\n\n\nUsage\n-----\n\n```rust\nuse bevy_app::prelude::*;\nuse bevy_ecs::prelude::*;\nuse bevy_raylib::prelude::*;\nuse bevy_utils::prelude::*;\n\nfn main() {\n  App::new()\n    .add_plugins(RaylibPlugin)\n    .insert_resource(WindowConfig {\n      title: \"Bevy + Raylib\".to_owned(),\n      ..default()\n    })\n    .add_systems(PostUpdate, render)\n    .run();\n}\n\nfn render(mut raylib: NonSendMut\u003cRaylibContext\u003e, cursor: Res\u003cCursor\u003e) {\n  let mut d = raylib.begin_drawing();\n  d.clear_background(Color::WHITE);\n  d.draw_text(\n    \u0026format!(\"{}, {}\", cursor.x, cursor.y),\n    12,\n    12,\n    20,\n    Color::BLACK,\n  );\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fickk%2Fbevy_raylib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fickk%2Fbevy_raylib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fickk%2Fbevy_raylib/lists"}