Martin Taibr

Results 31 comments of Martin Taibr

The behavior depends on whether there's a render target or not. ```rust use macroquad::prelude::*; #[macroquad::main("Camera bug")] async fn main() { let render_target = render_target(600, 400); let rect = Rect::new(0.0, 0.0,...

I updated the issue. All major issues are fixed, the rest is mostly papercuts, my console is fully usable (and i'll soon separate it into a reusable crate). Thanks for...

> @martin-t what is meant by `A way to set which chars are considered non-word chars.`? I'd like to be able to set chars like `-` and `_` to be...

If it makes you feel any better, just recently i ran across [this quote](https://raphlinus.github.io/rust/gui/2022/07/15/next-dozen-guis.html): > There’s so much work involved in making a fully functional text input box that it...

> @martin-t What do you mean by `Shadows` in one of your requests? Drawing the text one more time with an offset like this ![image](https://user-images.githubusercontent.com/4079823/189527101-f94605b4-9232-428b-a034-5b44652f0e89.png) It's useful to make text...

> @martin-t I added shadows, please check if that's what you need. Yup. I am using dilation 0 and offset [1,1] because that seems to give the most legible results...

Make sure you've compiled the editor in release mode. Apart from that I am also noticing 100% CPU usage in my game, seems to only happen after it's been left...

I updated to the latest commit (102ec67c7ab86cb993864d51c49069dca0ec0fd0) and i still get a crash.

For completeness, here's the code i am using to repro: https://github.com/rustcycles/rustcycles/commit/c0045376816ae0437a1546fcfc9fcde4002b4a95 (I didn't make a separate test project because of how long fyrox takes to compile but i don't think...

OK, here's a standalone repro case: https://github.com/martin-t/Fyrox/commit/85fbe8d6e78f0765fa39d8031a205ebf5f0b5743 Press some letter keys, click the button, press letter keys again, should crash.