-
Notifications
You must be signed in to change notification settings - Fork 0
Home
PheonixVX edited this page Nov 29, 2020
·
1 revision
The Textile-Wiki is a wiki for all things related to Infdev and TextileMC's APIs / Code.
To setup a development environment for Infdev mods using the Fabric Loader, download or clone TextileMC's Example Mod. This is a generic base for every mod and should be used over manually creating a project.
Run the command gradlew.bat genSources if you are on Windows, or ./gradlew genSources for MacOS and Linux variants.
This will generate the Minecraft Infdev sources for modding use in your gradle caches.
The next step depends on your IDE of choice:
-
gradlew.bat ideaor./gradlew idea(Intellij IDEA)- For IDEA, import the Gradle project. Fabric no longer supports setting up the project using the command line.
-
gradlew.bat eclipseor./gradlew eclipse(Eclipse IDE) -
gradlew.bat vscodeor./gradlew vscode(VSCode IDE)
After importing the project, You may start coding immediately.