Last active
December 25, 2016 20:46
-
-
Save StillManic/91d3465667a3d2c7ecb680660aa31796 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[12:36:15] [Client thread/ERROR] [FML]: Exception loading model for variant transitmod:gear#facing=down for blockstate "transitmod:gear[facing=down]" | |
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model transitmod:gear#facing=down with loader VariantLoader.INSTANCE, skipping | |
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] | |
at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:241) ~[ModelLoader.class:?] | |
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] | |
at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] | |
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[ModelLoader.class:?] | |
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] | |
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [SimpleReloadableResourceManager.class:?] | |
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [SimpleReloadableResourceManager.class:?] | |
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:799) [Minecraft.class:?] | |
at net.minecraft.client.Minecraft.processKeyF3(Minecraft.java:2146) [Minecraft.class:?] | |
at net.minecraft.client.Minecraft.runTickKeyboard(Minecraft.java:2002) [Minecraft.class:?] | |
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1846) [Minecraft.class:?] | |
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1118) [Minecraft.class:?] | |
at net.minecraft.client.Minecraft.run(Minecraft.java:406) [Minecraft.class:?] | |
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_45] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_45] | |
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_45] | |
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] | |
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_45] | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_45] | |
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_45] | |
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] | |
at GradleStart.main(GradleStart.java:26) [start/:?] | |
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException | |
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] | |
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1183) ~[ModelLoader$VariantLoader.class:?] | |
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] | |
... 26 more |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"forge_marker": 1, | |
"defaults": { | |
"model": "transitmod:gear5.obj" | |
}, | |
"variants": { | |
"inventory": [{ | |
"transform": { | |
"gui": { | |
"rotation": {"x": 30, "y": 255, "z": 0}, | |
"translation": 0, | |
"scale": 0.625 | |
}, | |
"ground": { | |
"translation": [0, 3, 0], | |
"scale": 0.25 | |
}, | |
"fixed": { | |
"translation": 0, | |
"scale": 0.5 | |
}, | |
"thirdperson_righthand": { | |
"rotation": {"x": 75, "y": 45, "z": 0}, | |
"translation": [0, 2.5, 0], | |
"scale": 0.375 | |
}, | |
"thirdperson_lefthand": { | |
"rotation": {"x": 75, "y": 45, "z": 0}, | |
"translation": [0, 2.5, 0], | |
"scale": 0.375 | |
}, | |
"firstperson_righthand": { | |
"rotation": {"y": 45}, | |
"translation": 0, | |
"scale": 0.4 | |
}, | |
"firstperson_lefthand": { | |
"rotation": {"y": 255}, | |
"translation": 0, | |
"scale": 0.4 | |
} | |
} | |
}], | |
"facing": { | |
"down": {"x": 180}, | |
"up": {}, | |
"north": {"x": 270}, | |
"south": {"x": 90}, | |
"west": {"x": 270, "y": 270}, | |
"east": {"x": 270, "y": 90} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment