NEC uses a hack to get common asset files when running in dev
natanfudge opened this issue ยท 1 comments
task copyAssetFilesForDebugging(type: Copy) {
def inAssets = rootProject.file("common/src/main/resources/assets/notenoughcrashes")
def outAssets = new File("${project.buildDir}/resources/main/assets/notenoughcrashes")
from inAssets
into outAssets
dependsOn rootProject.processResources
}
In the Architectury example mod, common assets work fine in dev without this.
We need to figure out how to have it work like the example mod, without that hack.