├── .github ├── dependabot.yml └── workflows │ ├── audit.yml │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── assets ├── Master Sword license.txt ├── Master Sword-Fairy.ani ├── Master Sword.cur ├── kenney_crosshairPack.cur.ron └── kenney_crosshairPack │ ├── License.txt │ └── Tilesheet │ └── crosshairs_tilesheet_white.png ├── examples ├── ani.rs ├── cur.rs ├── cur_ron_asset.rs └── helpers │ ├── flip.rs │ └── ui.rs ├── rustfmt.toml └── src ├── ani ├── animation.rs ├── asset.rs ├── decoder.rs ├── mod.rs └── serde_asset.rs ├── asset_image.rs ├── builder.rs ├── cur ├── asset.rs ├── decoder.rs ├── mod.rs └── serde_asset.rs ├── hotspot.rs └── lib.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/README.md -------------------------------------------------------------------------------- /assets/Master Sword license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/assets/Master Sword license.txt -------------------------------------------------------------------------------- /assets/Master Sword-Fairy.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/assets/Master Sword-Fairy.ani -------------------------------------------------------------------------------- /assets/Master Sword.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/assets/Master Sword.cur -------------------------------------------------------------------------------- /assets/kenney_crosshairPack.cur.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/assets/kenney_crosshairPack.cur.ron -------------------------------------------------------------------------------- /assets/kenney_crosshairPack/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/assets/kenney_crosshairPack/License.txt -------------------------------------------------------------------------------- /assets/kenney_crosshairPack/Tilesheet/crosshairs_tilesheet_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/assets/kenney_crosshairPack/Tilesheet/crosshairs_tilesheet_white.png -------------------------------------------------------------------------------- /examples/ani.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/examples/ani.rs -------------------------------------------------------------------------------- /examples/cur.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/examples/cur.rs -------------------------------------------------------------------------------- /examples/cur_ron_asset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/examples/cur_ron_asset.rs -------------------------------------------------------------------------------- /examples/helpers/flip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/examples/helpers/flip.rs -------------------------------------------------------------------------------- /examples/helpers/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/examples/helpers/ui.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/ani/animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/ani/animation.rs -------------------------------------------------------------------------------- /src/ani/asset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/ani/asset.rs -------------------------------------------------------------------------------- /src/ani/decoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/ani/decoder.rs -------------------------------------------------------------------------------- /src/ani/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/ani/mod.rs -------------------------------------------------------------------------------- /src/ani/serde_asset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/ani/serde_asset.rs -------------------------------------------------------------------------------- /src/asset_image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/asset_image.rs -------------------------------------------------------------------------------- /src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/builder.rs -------------------------------------------------------------------------------- /src/cur/asset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/cur/asset.rs -------------------------------------------------------------------------------- /src/cur/decoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/cur/decoder.rs -------------------------------------------------------------------------------- /src/cur/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/cur/mod.rs -------------------------------------------------------------------------------- /src/cur/serde_asset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/cur/serde_asset.rs -------------------------------------------------------------------------------- /src/hotspot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/hotspot.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgi388/bevy-cursor-kit/HEAD/src/lib.rs --------------------------------------------------------------------------------