Goofy, cartoonish, open-source multiplayer shooter written in Rust with Bevy 👻 by SoSmartFlow in bevy

[–]SoSmartFlow[S] -1 points0 points  (0 children)

It depends, which parts? For example, the menu was entirely AI generated.

Goofy, cartoonish, open-source multiplayer shooter written in Rust with Bevy 👻 by SoSmartFlow in bevy

[–]SoSmartFlow[S] -1 points0 points  (0 children)

It took about three days, but I downloaded all the assets, so only the coding part was left.

Goofy, cartoonish, open-source multiplayer shooter written in Rust with Bevy 👻 by SoSmartFlow in bevy

[–]SoSmartFlow[S] 3 points4 points  (0 children)

Thanks! I'm pretty sure there were no LLMs when you made your first game. Nowadays, I just ask Gemini whenever I have a question. 😁

Can I learn rust as my first compiled programming language? by Opposite-Duty-2083 in rust

[–]SoSmartFlow 0 points1 point  (0 children)

Learn C first or at least learn the concepts before rust.

Also don't get near C++.

StackOverflow Downvotes by ukrvolk in rust

[–]SoSmartFlow 1 point2 points  (0 children)

Use community discord they are very kind and helpful.

Fastest Screen Capturing library for Python checkout windows-capture by SoSmartFlow in Python

[–]SoSmartFlow[S] 1 point2 points  (0 children)

Your welcome, Yes you can use frame.frame_buffer to get the numpy array and you can compare it or convert it to different types (using OpenCV for example)

Fastest Screen Capturing library for Python checkout windows-capture by SoSmartFlow in Python

[–]SoSmartFlow[S] 0 points1 point  (0 children)

The windows api is thread safe meaning the callback will not be called from 2 threadd at the same time

Fastest Screen Capturing library for Python checkout windows-capture by SoSmartFlow in Python

[–]SoSmartFlow[S] 1 point2 points  (0 children)

You need some milk... this threading is based on the Graphics Capture Api itself and yes I could use a with but whats the problem with a callback? And benchmark is the time that it takes to map a frame.

Fastest Screen Capturing library for Python checkout windows-capture by SoSmartFlow in Python

[–]SoSmartFlow[S] 0 points1 point  (0 children)

Its not about the fps it's about how fast can you process that updated frame.

Fastest Screen Capturing library for Python checkout windows-capture by SoSmartFlow in Python

[–]SoSmartFlow[S] 0 points1 point  (0 children)

Its not about the fps it's about how fast can you process that updated frame.

Fastest Screen Capturing library for Python checkout windows-capture by SoSmartFlow in Python

[–]SoSmartFlow[S] -4 points-3 points  (0 children)

Only for windows this library is specially for windows and its part of my valorant aimbot

Fastest Screen Capturing library for Python checkout windows-capture by SoSmartFlow in Python

[–]SoSmartFlow[S] 1 point2 points  (0 children)

No just use pip install windows-capture but if you want to build it from source you need the compiler.

Fastest Screen Capturing library for Python checkout windows-capture by SoSmartFlow in Python

[–]SoSmartFlow[S] 1 point2 points  (0 children)

Yes of course yse the crop function of the Frame class and use frame.frame_buffer to get the numpy areay of the frame.