You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I made a test mod with FOML, and it keeps saying it can't find the .obj.json file (WARN]: Unable to load model: 'ifi:block/blast_door_base.obj' referenced from: ifi:blast_door#: java.io.FileNotFoundException: ifi:models/block/blast_door_base.obj.json) but it doesn't seem to be loading the .obj file itself.
My custom block also has a missing model (purple cube).
I copied everything from the FOML_test folder in this repo in terms of the json files and I changed the names to match my obj files, so it shouldn't be erroring.
The text was updated successfully, but these errors were encountered:
dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "dev.onyxstudios:FOML:${foml_version}"// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
include "dev.onyxstudios:FOML:${foml_version}"
}
So I made a test mod with FOML, and it keeps saying it can't find the .obj.json file (
WARN]: Unable to load model: 'ifi:block/blast_door_base.obj' referenced from: ifi:blast_door#: java.io.FileNotFoundException: ifi:models/block/blast_door_base.obj.json
) but it doesn't seem to be loading the.obj
file itself.My custom block also has a missing model (purple cube).
I copied everything from the FOML_test folder in this repo in terms of the json files and I changed the names to match my obj files, so it shouldn't be erroring.
The text was updated successfully, but these errors were encountered: