this post was submitted on 22 Nov 2025
19 points (91.3% liked)
Game Development
5310 readers
1 users here now
Welcome to the game development community! This is a place to talk about and post anything related to the field of game development.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
For someone like me, who was a bit lost on the meaning of framework, framework here is what you use to build an engine (I thought it's on top of the engine instead)
Also, the beginning of the article is a bit messy and the author jumps around thoughts, but it gets an interesting read, and they even talk about how to actually use AI for benefit instead of for multiplying bugs:
Maybe we will finally see no-vibe solutions, like we saw no-code solutions 🌚
When it comes to game development, engines usually have their own IDE and have many tools ready that make it so you don't have to code everything - in Godot, for instance, you can create AnimationPlayer and AnimationTree to handle animations.
Frameworks (MonoGame for C#, libGDX for Java, LOVE2D for Lua) can be understood as "pre-engines" or libraries for those coming off webdev, they offer lots of ready made functions to make your life easier (input handling, loading and handling most types of data, showing stuff on screen), but you'll still need to code pretty much everything else.