A Minecraft Forge mod all about Redstone circuity.
Release Branch | MC Version | Status |
---|---|---|
publish/1.16/release |
1.16.5 | |
publish/1.16/beta |
1.16.5 | |
publish/1.15/beta |
1.15.2 |
Project Red uses a standard Forge Gradle environment. Setup steps should be the same as most other mods:
-
Create a new folder and check out the repository:
mkdir ~/projectred && cd ~/projectred git checkout https://github.com/MrTJP/ProjectRed.git .
-
Setup a new workspace with a decompiled copy of Minecraft:
./gradlew setupDecompWorkspace
-
You can now either set up Eclipse or IntelliJ Idea as your IDE.
For Eclipse:
- Generate an Eclipse project with
./gradlew eclipse
- Import the generated project with
File > Import > General > Existing Projects into Workspace
For Intellij Idea:
- Open IntelliJ and from the splash screen, select
Import Project
- Point IntelliJ to the
./build.gradle
file in the git repo - Close IntelliJ and run
./gradlew genIntellijRuns
to complete setup
- Generate an Eclipse project with
-
If you'd like to contribute changes, you'll need to create your own fork of ProjectRed, push your changes, and then open a Pull Request for review.
You can build a locally checked out copy of the repository by simply running:
./gradlew build
The built jars will be found in ./build/libs
.