this post was submitted on 17 Jun 2023
2 points (100.0% liked)

Modded Minecraft

1109 readers
1 users here now

The Blocky, Modded Side of Lemmy

Rules: -Play nicely with others here

-Discussion should be at least somewhat related to modded Minecraft and all that entails

-Self-promotion is allowed within reason. Don't go overboard!

founded 1 year ago
MODERATORS
 

Essentially just the title. Why might one want to use Fabric or Forge over the other? Does one have better support for X features over the other? What are the differences in philosophy of the two projects that led to these differences?

all 4 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 1 year ago

This is just based on my really minimal understanding of them from years ago. Fabric is much more lightweight than Forge. Forge (at least for a while) patched everything everytime you loaded up the game. I believe Fabric was made to load quicker. Forge may be different now.

[–] [email protected] 0 points 1 year ago (1 children)

forge has a well known and established API for a lot of common things while fabric doesn't offer one OOTB so you'll have to fall back to mixins to modify minecraft's bytecode (not source code) in a lot of cases. fabric is a lot simpler in it's design and is a lot less performance intensive; but also lacks a lot of the QoL features a stable API provides.

my recommendation is to try both and get a feel for what you like best, do you rather spend ages looking at the forge documentation or prod at a somewhat translucent box in the hopes of making sense of a vague mixin error.

[–] [email protected] 0 points 1 year ago (1 children)

Hmm... so Forge is more focused on having a centralized location (the API) to interact with the game, whereas Fabric gives the mod maker more control over the game without needing to depend on an API having the functionality required?