Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Sodium Fabric | 4,225 | a day ago | 107 | lgpl-3.0 | Java | |||||
A Fabric mod designed to improve frame rates and reduce micro-stutter | ||||||||||
Iris | 2,840 | 2 days ago | 219 | lgpl-3.0 | Java | |||||
(WIP) A modern shaders mod for Minecraft intended to be compatible with existing OptiFine shader packs | ||||||||||
Dynmap | 1,912 | 2 days ago | 92 | apache-2.0 | Java | |||||
A set of Minecraft mods that provide a real time web-based map system for various Minecraft server implementations. | ||||||||||
Minecraftdeveloperguide | 1,862 | a month ago | 3 | |||||||
📝Minecraft developer Chinese guide,我的世界开发者中文指南 | ||||||||||
Lithium Fabric | 1,756 | 2 days ago | 26 | lgpl-3.0 | Java | |||||
A Fabric mod designed to improve the general performance of Minecraft without breaking things | ||||||||||
Meteor Client | 1,569 | 10 hours ago | 619 | gpl-3.0 | Java | |||||
Based Minecraft utility mod. | ||||||||||
Fabric Carpet | 1,514 | 2 days ago | 289 | mit | Java | |||||
Fabric Carpet | ||||||||||
Applied Energistics 2 | 1,292 | 4 days ago | 139 | other | Java | |||||
A Minecraft Mod about Matter, Energy and using them to conquer the world.. | ||||||||||
Usefulmods | 1,245 | 16 days ago | 22 | mit | ||||||
Just a list of useful mods | ||||||||||
Phosphor Fabric | 1,043 | 5 months ago | 6 | lgpl-3.0 | Java | |||||
A Fabric mod designed to dramatically improve the performance of Minecraft's lighting engine while fixing many bugs |
Phosphor is a free and open-source Minecraft mod (under GNU GPLv3) aiming to save your CPU cycles and improve performance by optimizing one of Minecraft's most inefficient areas-- the lighting engine. It works on both the client and server, and can be installed on servers without requiring clients to also have the mod.
The mod is designed to be as minimal as possible in the changes it makes, and as such, does not modify the light model or interfaces of vanilla Minecraft. Because of this, Phosphor should be compatible with many Minecraft mods (so long as they do not make drastic changes to how the lighting engine works.) If you've ran into a compatibility problem, please open an issue!
You will need Fabric Loader 0.10.x or newer installed in your game in order to load Phosphor. If you haven't installed Fabric mods before, you can find a variety of community guides for doing so here.
The latest releases of Phosphor are published to our Modrinth and GitHub release pages. Releases are considered by our team to be suitable for general use, but they are not guaranteed to be free of bugs and other issues.
Usually, releases will be made available on GitHub slightly sooner than other locations.
If you are a player who is looking to get your hands on the latest bleeding-edge changes for testing, consider taking a look at the automated builds produced through our GitHub Actions workflow. This workflow automatically runs every time a change is pushed to the repository, and as such, the builds it produces will generally reflect the latest snapshot of development.
Bleeding edge builds will often include unfinished code that hasn't been extensively tested. That code may introduce incomplete features, bugs, crashes, and all other kinds of weird issues. You should not use these bleeding edge builds unless you know what you are doing and are comfortable with software debugging. If you report issues using these builds, we will expect that this is the case. Caveat emptor.
If you are using the CurseForge client, you can continue to find downloads through our CurseForge page. Unless you are using the CurseForge client, you should prefer the downloads linked on our Modrinth or GitHub release pages above.
You can report bugs and crashes by opening an issue on our issue tracker. Before opening a new issue, use the search tool to make sure that your issue has not already been reported and ensure that you have completely filled out the issue template. Issues which are duplicates or do not contain the necessary information to triage and debug may be closed.
Please note that while the issue tracker is open to feature requests, development is primarily focused on improving hardware compatibility, performance, and finishing any unimplemented features necessary for parity with the vanilla renderer.
We have an official Discord community for all of our projects. By joining, you can:
Support is not provided for setting up build environments or compiling the mod. We ask that users who are looking to get their hands dirty with the code have a basic understanding of compiling Java/Gradle projects. The basic overview is provided here for those familiar.
Phosphor uses a typical Gradle project structure and can be built by simply running the default build
task. After Gradle
finishes building the project, you can find the build artifacts (typical mod binaries, and their sources) in
build/libs
.
Tip: If this is a one-off build, and you would prefer the Gradle daemon does not stick around in memory afterwards,
try adding the --no-daemon
flag
to ensure that the daemon is torn down after the build is complete. However, subsequent builds of the project will
start more slowly if the Gradle
daemon is not available to be re-used.
Build artifacts ending in dev
are outputs containing the sources and compiled classes
before they are remapped into stable intermediary names. If you are working in a developer environment and would
like to add the mod to your game, you should prefer to use the modRuntime
or modImplementation
configurations provided by
Loom instead of these outputs.
Phosphor is licensed under GNU LGPLv3, a free and open-source license. For more information, please see the license file.