Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/volas171/nekodustry
This Mod Will add Nekos to mindustry
https://github.com/volas171/nekodustry
Last synced: about 1 month ago
JSON representation
This Mod Will add Nekos to mindustry
- Host: GitHub
- URL: https://github.com/volas171/nekodustry
- Owner: Volas171
- License: mit
- Created: 2021-02-04T19:54:02.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-04T19:54:06.000Z (almost 4 years ago)
- Last Synced: 2024-10-28T17:27:40.880Z (3 months ago)
- Language: Java
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mindustry Mod Template
A blank template for Mindustry mods with an existing Gradle configuration to compile and dex-ify, and Github Actions to automatically do both and upload the artifacts.## Compiling
JDK 8.\
Task `dexify` requires `d8` from Android `build-tools` > `28.0.1`.Plain Jar is for JVMs (desktop).\
Dexed Jar is for for JVMs (desktop) and ARTs (Android).\
These two are separate in order to decrease size of mod download.### Windows
Plain Jar: `gradlew build`\
Dexify Plain Jar: `gradlew dexify`\
Build Plain & Dexify Jar: `gradlew buildDex`### *nix
Plain Jar: `./gradlew build`\
Dexify Plain Jar: `./gradlew dexify`\
Build Plain & Dexify Jar: `./gradlew buildDex`## I have no idea what I'm doing with this
1. Rename directories in `src/` to avoid collisions with other mods that didn't.
2. Change `pGroup` in `gradle.properties` to match up with the new directories.
3. Update `main` in `assets/mod.json` to line up with renamed directories.
4. Refer to [Compiling](#compiling).