this post was submitted on 12 Dec 2024
139 points (96.6% liked)

Ask Lemmy

27211 readers
1928 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try [email protected] or [email protected]


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] renzev 0 points 4 days ago* (last edited 4 days ago) (1 children)

Back in the olden days when games were written in assembly and there was barely enough memory for a framebuffer it made sense to tediously optimize games to squeeze every bit of performance out of the limited hardware. Modern consoles are not like that. They have their own operating systems with schedulers, multitasking, and memory allocators, much like a desktop computer. Your claim that "way more stuff is running at the same time" is only true if the PC user deliberately decides to keep other programs running alongside their game (which can be a feature in and of itself -- think recording/streaming, discord, etc.) It is true that while developing for PC you have to take account that different people will have different hardware, but that problem is solved by having a graphics settings menu. Some games can even automatically select the best graphics options that will get the most out of your hardware. What you're describing is a non-problem.

[โ€“] [email protected] 1 points 1 day ago (1 children)

'Your claim that "way more stuff is running at the same time" is only true if the PC user deliberately decides to keep other programs running alongside their game' - So did you deliberately decide to run virus scanners, Microsoft telemetry, anti-cheat-software, preloaders for browsers like Chrome so they start up faster, explorer plugins and the usual assortment of bloat- and malware? No offense, but thinking that nothing ran on your computer unless you deliberately start it is naive. Why do you think there are so many "PC-Cleaner"-Tools? Even for Android there are "game modes" and "memory cleaners". I have never seen anything similar on a gaming console.

'It is true that while developing for PC you have to take account that different people will have different hardware, but that problem is solved by having a graphics settings menu.' - And what do you think who designs the content that you choose from in that menu? When artists create meshes and textures they have to decide on resolution and polygon count. If your graphics card simply does not have that much memory then the performance is going to drop significantly. So if you want to have the option to lower the graphics settings you need to have assets that require less memory. I mean sure, some engines offer generic settings menus and there are algorithms that lower the memory footprint of assets algorithmically, but if course the result won't be the same as if the assets were manually designed for that size. And if the assets are designed for a lower footprint a slider won't be able to magically add details. The same applies for shaders. If the performance of the hardware is not sufficient a generic settings menus will only switch off effects, and unless you create an alternative the result may look pretty rough.

So that settings menu may be a solution for the players, but for the developers it means that all the options you can choose from need to be developed and tested, and that takes time and money.