historydev
historydev
https://docs.rs/macroquad/latest/macroquad/prelude/struct.UniformDesc.html#method.array
> So you're taking the error object and trying to assign to `$ZodIssueStringStartsWith`? There are several cases where Zod adds additional properties for additional context not described in the issue...
> I believe it was fixed already but it did not yet made to crates.io ``` let rt1 = render_target(VIRTUAL_WIDTH as u32, VIRTUAL_HEIGHT as u32); //
Because you are creating Rect 1000 times per frame. Move `Rect::new` outside the game loop: ```use macroquad::prelude::*; #[macroquad::main("Letterbox")] async fn main() { let width = screen_width(); let height = screen_height();...
> > Because you are creating Rect 1000 times per frame. Move `Rect::new` outside the game loop: > > 1. Rect is so cheap to create that it's not relevant....
> > Your code gives me a stable 240 frames with vsync, without it - it gives more. That's why I physically can't test it and I have to look...