Skip to content

Dynamic Resources FAQ

embeddedt edited this page May 20, 2023 · 6 revisions

What is dynamic resources?

Dynamic resources is a new optimization available in ModernFix. It makes changes to Minecraft so that block & item models are loaded dynamically rather than all being loaded at startup. This can speed up launching the game quite a bit more and also often allows allocating less RAM.

How do I get started?

ModernFix only enables optimizations that I believe are safe and will work with every mod (or can be fixed to do so). Unfortunately, dynamic resources, by nature of changing such a fundamental mechanic, is much more likely to break mods in ways I cannot anticipate. Therefore it is disabled by default. To enable it, simply go to config/modernfix-mixins.properties and add the following line:

mixin.perf.dynamic_resources=true

Should you encounter any issues, it can be disabled by undoing this change. Modpacks which have tested dynamic resources and found it to work well are encouraged to turn this option on. The compatibility issues are not related to specific players' hardware.

The most likely issues you will encounter with dynamic resources are a crash on startup or missing textures on some models.

Hasn't this been done before?

Yes, back in 1.12's prime there was a branch of VanillaFix that implemented a similar optimization. However that patch was unfortunately never developed to completion, and does not work properly with a lot of mods. In contrast, ModernFix is receiving active development, is available for newer versions of the game, and (from what I can tell) works with the vast majority of mods without any additional tweaks being required.

Clone this wiki locally