• 0 Posts
  • 26 Comments
Joined 11 months ago
cake
Cake day: August 3rd, 2023

help-circle



  • My ex wasn’t diagnosed with anything, but has an autistic sister and strange behaviors herself. Being suspicious of myself (I was diagnosed with ADHD during a time you couldn’t have both) and having always carefully observed people (to mask better), I noticed some qualities the two shared, but the symptoms were more subtle in my ex. She has been tested but not diagnosed, and I think the doctors were wrong. But, yes, symptoms observed had a distinctly feminine skew, or even a different mode of application. She did not get the help I know she needed (and she mistakenly held the opinion that the doctors are nigh-infallible, and that I am not ASD either).














  • Unity is trash and I’ll just leave that alone.

    Using Rust for a game engine with wgpu, unless you already know Rust intimately and have used the Vulkan API before, is going to be difficult for you. I recommend you give it a try, but last I checked wgpu expected you to be familiar with Vulkan and is missing comments on most crate types and functions.

    You might have better luck with something like macroquad or miniquad, but you’ll probably hit a wall and realize you want to do something that the developer didn’t think to expose an API to make possible. You’re also on your own for sound. Bevy has many components and I know it’s popular, but I don’t know if it has rendering. Maybe macroquad is the missing piece? Oh, and then text rendering. That’s a tough one.

    I recommend a couple options: browse lib.rs or AreWeGameYet for game engines that aim to provide a complete package.

    For non-rust, recently Relogic gave a bunch of money to Godot and FNA, so I would check those out. That’s going to be your quickest start (towards minimalism and performance) that isn’t unity.