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
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.