Game dev and Linux user
Dont forget cs2, plus the short (but very fun) Aperture Desk Job)
It depends on how you install stuff. Games on Steam or downloaded from online from places like itch.io can be put on any drive without issue.
In terms of software though, native packages (deb, rpm) are gonna want to put files in various system folders, so it’s pretty much impossible to get those off your os drive.
Other packaging solutions can help with this though. Appimages can be put anywhere, nix let’s you install to another drive, same with flatpak.
And if you’re savvy, you could use docker to install system packages on other drives, although I wouldn’t recommend it.
Wow it evolved from an Empoisoned game to a Swumbles Big Jumble game.
Wow this is a certified Spec Ops The Line moment
I feel like this isn’t exclusive to indie games.
Empoisoned games: Forespoken, Bloodborne, Metal Gear Rising Revengance
Swumbles Big Jumble games: Assassin’s Creed (plus subtitle), John Madden Football (and other similarly titled sports games), any legend of zelda game.
Women are you allowed to resubmit games if they’ve been in development kit and you both seem to be on it was the way to save data by teleporting electrons into an image
Yeah I agree with you there. If you’re gonna just give two or three body type options and no other customization, there should be an androgenous option or at least they should all be generally androgenous. I think the issue with runescape probably stems from how the game was before.
I agree with what others said that more customization is generally good, but not all games really need that level of customization. For something like animal crossing, I think the body type thing is fine, since the designs are more neutral unlike what you’re describing. I think what could help is a third option that’s a more neutral body type. Or maybe if it’s not relevant, just don’t have a body type option.
I also don’t know much about runescape, but I assume this was an update that just changed the names from genders to body types, so adding other options might have increased the scope of the update. I think at least uncoupling that from gender is at least an improvement over before. Plus, I kinda disagree that people would only pick the corresponding pronouns. Plenty of people have a gender expression that doesn’t necessarily match their gender identity.
So I use a surface device with the Linux surface kernel, and there was (and probably still is) an issue where the type cover doesn’t properly rebind after being detached and re-attatched. To make matters worse, connecting other USB devices disconnected the type cover. My solution was to make a udev rule that detected if the keyboard is “removed” and then try to rebind it, effectively unplugging it and plugging it back in again in software.
I… What? Why does that work? How did you figure this out?
This is the quality content im here for
I had been considering switching for years, I even made a list of things I had to find alternatives to and tried to widdle it down. With proton making gaming viable, I decided to dual boot, and accidentally destroyed my entire windows partition when trying to back it up with dd. Just said fuck it and went full Linux.
I mean, that’s not cruelty free. Someone’s still gotta animate that. And most good animators either act scenes out beforehand and/or use reference footage.
Me when the Twitter community has screenshots of Twitter
Yep that’s what generative ai is.
Gdscript let’s you do static typing, so “var a : int” ensures that a is an integer. This can help prevent bugs and bad code, and even speeds up the interpreter since it can make some assumptions.
So until now, you couldn’t do that with dictionaries, they always allowed any type as a key or value. This adds that functionality so dictionaries can be used with stricter rules, preventing bugs and making them faster.