| Crates.io | playdate-sprite |
| lib.rs | playdate-sprite |
| version | 0.3.3 |
| created_at | 2023-09-10 16:34:22.30767+00 |
| updated_at | 2025-03-19 17:22:40.215703+00 |
| description | High-level sprite API built on-top of Playdate API |
| homepage | https://github.com/boozook/playdate |
| repository | https://github.com/boozook/playdate.git |
| max_upload_size | |
| id | 968904 |
| size | 114,636 |
High-level sprite API built on-top of playdate-sys.
⚠️ Prior to the version 1.0 API is unstable and can be changed without deprecation period.
use playdate_sprite::*;
use playdate_graphics::*;
use playdate_graphics::bitmap::Bitmap;
let bitmap = Bitmap::new(50, 50, Color::BLACK)?;
let sprite = Sprite::new();
sprite.set_draw_mode(BitmapDrawMode::Copy);
sprite.set_image(&bitmap, BitmapFlip::Unflipped);
sprite.move_to(CENTER_X as _, CENTER_Y as _);
sprite.add();
...
More covered in examples.
This software is not sponsored or supported by Panic.