Original template by screret, updated by JuiceyBeans
Well for one, you WILL need to know Java to make an addon. There's no getting around this. A good starting point would be MOOC or W3Schools
Unfortunately, there isn't any official documentation so far for making GregTech Modern addons. There are a couple of mods you can look at to reference though!
Repositories for other addons:
Additionally, you may be able to find help on the GregTech CEu Discord!
This template comes packaged with Spotless!
- Spotless keeps your code neatly formatted. It's essentially a grammar check for your code!
- Yes! Spotless is completely optional and will not affect your project by default
- You can run Spotless anytime by:
- Running the
spotlessApply
task from the Gradle tab in IntelliJ - Installing the Spotless Gradle plugin for IntelliJ
- Typing in
gradlew.bat :spotlessApply
if you're on Windows - Typing in
bash gradlew :spotlessApply
if you're on Linux
- Running the