historydev
historydev
- Robotgo version (or commit ref): 1.0.0-rc1 - Go version: 1.20.3 - Gcc version: gcc.exe (tdm64-1) 10.3.0 - Operating system and bit: win11/64 - Resolution: - Can you reproduce the...
https://docs.rs/miniquad/0.4.6/miniquad/conf/struct.Conf.html#structfield.sample_count For example, on the computer I set 120, 300 and more and no problems, and on the Android phone the maximum was 2, and what if there is a...
Hello! My system: OS: win11 Android Studio: 2023.3.1 Patch1 Android SDK: ``` Android SDK Build-Tools 35: 34.0.0 Installed 33.0.1 Installed 33.0.0 Installed 32.0.0 Installed 30.0.3 Installed 30.0.0 Installed 29.0.2 Installed...
I modified the basic example a bit to try and handle collisions between circles, using interpolation and fixed step I couldn't fix it. - What did I do wrong and...
https://github.com/colinhacks/zod/blob/main/packages/zod/src/v4/core/errors.ts#L117 ``` /* other */ export interface $ZodIssueStringStartsWith extends $ZodIssueInvalidStringFormat { format: "starts_with"; prefix: string; } /* other */ ``` When I get an `invalid_format` error with the `starts_with` format,...
``` perf("Game Draw", || { world.draw(); // Very much entities with shaders }, true); perf("Text Draw", || { set_default_camera(); }, true); perf("Game Update", || { world.update(); }, true); ``` **Debug...
System: win11 `screen_dpi_scale() // returns 1.0` If multiply screen size on 2.0 all works like need, but why? ``` use macroquad::prelude::{ clear_background, draw_rectangle, draw_rectangle_lines, next_frame, screen_height, screen_width, set_camera, vec2, Camera2D,...