{"id":15691645,"url":"https://github.com/timjentzsch/bevy_mod_krita","last_synced_at":"2026-03-06T01:34:53.578Z","repository":{"id":103580311,"uuid":"606054547","full_name":"TimJentzsch/bevy_mod_krita","owner":"TimJentzsch","description":"Load Krita documents directly in Bevy.","archived":false,"fork":false,"pushed_at":"2024-11-30T20:28:28.000Z","size":4573,"stargazers_count":8,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-05T23:55:36.415Z","etag":null,"topics":["bevy","bevy-plugin","krita"],"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/TimJentzsch.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,"zenodo":null}},"created_at":"2023-02-24T13:52:23.000Z","updated_at":"2024-11-30T20:15:45.000Z","dependencies_parsed_at":"2025-05-02T21:32:01.871Z","dependency_job_id":null,"html_url":"https://github.com/TimJentzsch/bevy_mod_krita","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/TimJentzsch/bevy_mod_krita","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimJentzsch%2Fbevy_mod_krita","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimJentzsch%2Fbevy_mod_krita/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimJentzsch%2Fbevy_mod_krita/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimJentzsch%2Fbevy_mod_krita/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TimJentzsch","download_url":"https://codeload.github.com/TimJentzsch/bevy_mod_krita/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimJentzsch%2Fbevy_mod_krita/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281410760,"owners_count":26496368,"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","status":"online","status_checked_at":"2025-10-28T02:00:06.022Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bevy","bevy-plugin","krita"],"created_at":"2024-10-03T18:22:38.922Z","updated_at":"2025-10-28T08:51:43.991Z","avatar_url":"https://github.com/TimJentzsch.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bevy_mod_krita [![Crates.io version](https://img.shields.io/crates/v/bevy_mod_krita)](https://crates.io/crates/bevy_mod_krita) [![Crates.io license](https://img.shields.io/crates/l/bevy_mod_krita)](LICENSE-MIT)\n\nLoad Krita's `.kra` documents directly in Bevy for rapid prototyping or game jams.\n\nPlease keep in mind that `.kra` files are not optimized for size, so you should probably not use them for production bundles.\n\n## Bevy Compatibility\n\n| `bevy` version | `bevy_mod_krita` version |\n| -------------- | ------------------------ |\n| `0.13`         | `0.4`                    |\n| `0.12`         | `0.3`                    |\n| `0.11`         | `0.2`                    |\n| `0.10`         | `0.1`                    |\n\n## Installation\n\n```cli\ncargo add bevy_mod_krita\n```\n\n## Usage\n\nSimply add the `KritaPlugin` to your app, enable hot reloading (optional) and load `.kra` files!\n\n```rs\nuse bevy::prelude::*;\nuse bevy_mod_krita::KritaPlugin;\n\nfn main() {\n    App::new()\n        .add_plugins(DefaultPlugins)\n        // Add the Krita plugin to enable loading of `.kra` files\n        .add_plugins(KritaPlugin)\n        .add_systems(Startup, setup)\n        .run();\n}\n\nfn setup(mut commands: Commands, asset_server: Res\u003cAssetServer\u003e) {\n    commands.spawn(Camera2dBundle::default());\n    commands.spawn(SpriteBundle {\n        // Load a Krita document as a texture\n        texture: asset_server.load(\"krita/demo.kra\"),\n        ..default()\n    });\n}\n```\n\n## License\n\nThis project is licensed under the terms of the [MIT](LICENSE-MIT) or [Apache 2.0](LICENSE-APACHE) license at your choice.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimjentzsch%2Fbevy_mod_krita","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimjentzsch%2Fbevy_mod_krita","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimjentzsch%2Fbevy_mod_krita/lists"}