Fedor Logachev
Fedor Logachev
updated, `cargo update` should update quad-snd version
@ImmortalOctogen (edited your comment just a bit - added code formatting tags) But yes, that's the way to setup an icon witn miniquad. I never used winres and do not...
thanks @macnelly yes, I believe this is fixed now
I'll do it myself, but can't promise any timeframe - I do not own a real mac myself, and getting back to the hackintosh setup I've got always takes some...
> @not-fl3 here is a minimal reproduction: > > ``` > use macroquad::{text::{load_ttf_font, TextParams, draw_text_ex, measure_text}, prelude::{WHITE, BLACK, GRAY}, window::{clear_background, next_frame, screen_width}, shapes::draw_rectangle}; > > #[macroquad::main("Flickering Example")] > async fn...
you can use `rand::srand()`, something like `macroquad::rand::srand(macroquad::miniquad::date::now())` should do the trick
I just runned the OP code in macroquad 0.4 ``` use macroquad::prelude::*; #[macroquad::test] async fn test_camera_y() { let mut render_target_camera = Camera2D::from_display_rect(Rect::new(0., 0., 800., 600.)); render_target_camera.render_target = Some(render_target(800, 600)); let...
Hi! My first response - maybe this deserves a separate crate?
> Per [image-rs/image#1641](https://github.com/image-rs/image/issues/1641), the `image` crate now supports the `qoi` file format. However attempting to run > > ```rust > use macroquad::prelude::*; > > let texture = load_texture("image.qoi"); > ```...
PR up, feel free to provide the feedback if it actually works or not :) https://github.com/not-fl3/egui-miniquad/pull/63