Games

Welcome to the largest gaming community on Lemmy! Discussion for all kinds of games. Video games, tabletop games, card games etc.
Rules
1. Submissions have to be related to games
Video games, tabletop, or otherwise. Posts not related to games will be deleted.
This community is focused on games, of all kinds. Any news item or discussion should be related to gaming in some way.
2. No bigotry or harassment, be civil
No bigotry, hardline stance. Try not to get too heated when entering into a discussion or debate.
We are here to talk and discuss about one of our passions, not fight or be exposed to hate. Posts or responses that are hateful will be deleted to keep the atmosphere good. If repeatedly violated, not only will the comment be deleted but a ban will be handed out as well. We judge each case individually.
3. No excessive self-promotion
Try to keep it to 10% self-promotion / 90% other stuff in your post history.
This is to prevent people from posting for the sole purpose of promoting their own website or social media account.
4. Stay on-topic; no memes, funny videos, giveaways, reposts, or low-effort posts
This community is mostly for discussion and news. Remember to search for the thing you're submitting before posting to see if it's already been posted.
We want to keep the quality of posts high. Therefore, memes, funny videos, low-effort posts and reposts are not allowed. We prohibit giveaways because we cannot be sure that the person holding the giveaway will actually do what they promise.
5. Mark Spoilers and NSFW
Make sure to mark your stuff or it may be removed.
No one wants to be spoiled. Therefore, always mark spoilers. Similarly mark NSFW, in case anyone is browsing in a public space or at work.
6. No linking to piracy
Don't share it here, there are other places to find it. Discussion of piracy is fine.
We don't want us moderators or the admins of lemmy.world to get in trouble for linking to piracy. Therefore, any link to piracy will be removed. Discussion of it is of course allowed.
Authorized Regular Threads
Related communities
PM a mod to add your own
Video games
Generic
- !gaming@Lemmy.world: Our sister community, focused on PC and console gaming. Meme are allowed.
- !photomode@feddit.uk: For all your screenshots needs, to share your love for games graphics.
- !vgmusic@lemmy.world: A community to share your love for video games music
Help and suggestions
By platform
By type
- !AutomationGames@lemmy.zip
- !Incremental_Games@incremental.social
- !LifeSimulation@lemmy.world
- !CityBuilders@sh.itjust.works
- !CozyGames@Lemmy.world
- !CRPG@lemmy.world
- !OtomeGames@ani.social
- !Shmups@lemmus.org
- !VisualNovels@ani.social
By games
- !Baldurs_Gate_3@lemmy.world
- !Cities_Skylines@lemmy.world
- !CassetteBeasts@Lemmy.world
- !Fallout@lemmy.world
- !FinalFantasyXIV@lemmy.world
- !Minecraft@Lemmy.world
- !NoMansSky@lemmy.world
- !Palia@Lemmy.world
- !Pokemon@lemm.ee
- !Skyrim@lemmy.world
- !StardewValley@lemm.ee
- !Subnautica2@Lemmy.world
- !WorkersAndResources@lemmy.world
Language specific
- !JeuxVideo@jlai.lu: French
view the rest of the comments
I'm still not quite getting your point, sorry. Why would 3D make it easier to attach a hat to the character or retarget animations than 2D? That seems like a specific engine feature limitation and not inherently a shortcoming of 2D in general? It sounds like you're comparing 3D to a primitive 2D engine where you need to manually draw and animate everything on screen instead of to a modern 2D engine with character bones, parenting, etc. Perhaps I'm actually out of the loop regarding the current limitations of 2D game engines and am thinking more in terms of a comparison between 3D and 2D animation software.
It might be simple attachment if a character is using skeletal animation, eg Intrusion 2. That art style isn’t used often because the direct limb tweeting is often overly visible. Often, most character frames are hand drawn or at least prerendered.
In these hand drawn styles, a character’s head could appear to enter Z depth as part of the drawing (imagine a 6 frame animation of a character spinning a sword like a top). When that happens WHILE they’re also wearing an attached hat, the hat must rotate and adjust for the depth as well - which means new drawings, even if you’re able to specify the positions of the character’s head during each frame of the animation.
We could be talking past each other with bad descriptions that need visuals, though.
I appreciate your more detailed description. I think I get what you're trying to explain. It just seems to me (at a very shallow level, I'm no expert) that all else being equal, 2D should be able to do just about anything that 3D can, but more simply (with some exceptions, of course - trying to reproduce a 3D look and behavior in 2D would obviously be an order of magnitude more work than just doing it in 3D).
To your point, I've generally noticed that bone-driven 2D animations tend to look kind of janky, like marionettes, but I didn't think that it was a technical limitation as much as just the animators taking a lot more shortcuts. In other words, why would limb tweening be inherently more overly visible in 2D vs. 3D? It seems that it would be hard to do a pure comparison that controlled for other variables, but intuitively it seems to me that in a comparison that did control for those 2D would turn out easier to produce content for than 3D.
Again, to your point, I can understand that if we compared popular hand-drawn or pixel art 2D assets and environments with popular styles of 3D assets and environments in common usage, especially across indie games, 3D could very likely come out ahead in productivity.
Sorry if I have dragged this conversation out too long. I have an interest in game design/development and game art and hope to some day get into both myself with some small games, so this is a topic that I would very much like to have a solid understanding of so I can make the most efficient use of my time.
With 3d you make the model and it's "naturally" 3d (obviously). If you want to make a 2d sprite have a different perspective, you need to animate (often times draw) it specifically. As they mentioned it before, it's mostly useful for animations and movement. It may not even be "reusability" as much as "lack of need to think about perspective" or "scalability".
Another point is that with a 3d engine under low-storage concerns (like say, the N64) you can do a lot of fuckery like having a total of ~10 textures and just apply various color tints (and maybe a blur here and there) to make it seem like there's more. While 2d engines do support this nowadays, it's still hard for artists to "fake" such a wide gamut of sprites, just by the nature of the medium. There's no model to apply a texture to, so you're limited to having a base sprite and recoloring it.
You could do a modular approach in 2d. For example, a character is built of the body (arms+face), hair, pants, shirt and shoes and change them individually. Same for houses with roofs, doors, windows and walls, etc.
However, as already said, you're limited by perspective a lot. Each new perspective requires almost double the sprites.