Jump to content

[Solved] .obj Parsing Error


Kwibble

Recommended Posts

Hello all,

 

I am trying to play around with .obj modelling and using them in minecraft... But it's throwing a parse error:

 

 

[12:10:20] [Client thread/ERROR] [FML]: Caught exception from basicmod

net.minecraftforge.client.model.ModelFormatException: Error parsing entry ('g Mesh1 Model', line 7) in file 'basicmod:models/test.obj' - Incorrect format

at net.minecraftforge.client.model.obj.WavefrontObject.parseGroupObject(WavefrontObject.java:511) ~[WavefrontObject.class:?]

at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:131) ~[WavefrontObject.class:?]

at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:56) ~[WavefrontObject.class:?]

at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:27) ~[ObjModelLoader.class:?]

at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:65) ~[AdvancedModelLoader.class:?]

at com.example.examplemod.TileEntityTestRenderer.<init>(TileEntityTestRenderer.java:21) ~[TileEntityTestRenderer.class:?]

at com.example.examplemod.BasicMod.preInit(BasicMod.java:27) ~[basicMod.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.6.0_65]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) ~[?:1.6.0_65]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) ~[?:1.6.0_65]

at java.lang.reflect.Method.invoke(Method.java:597) ~[?:1.6.0_65]

at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) ~[FMLModContainer.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.6.0_65]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) ~[?:1.6.0_65]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) ~[?:1.6.0_65]

at java.lang.reflect.Method.invoke(Method.java:597) ~[?:1.6.0_65]

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) ~[guava-15.0.jar:?]

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:47) ~[guava-15.0.jar:?]

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) ~[guava-15.0.jar:?]

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) ~[guava-15.0.jar:?]

at com.google.common.eventbus.EventBus.post(EventBus.java:267) ~[guava-15.0.jar:?]

at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:209) ~[LoadController.class:?]

at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:188) ~[LoadController.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.6.0_65]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) ~[?:1.6.0_65]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) ~[?:1.6.0_65]

at java.lang.reflect.Method.invoke(Method.java:597) ~[?:1.6.0_65]

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) ~[guava-15.0.jar:?]

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:47) ~[guava-15.0.jar:?]

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) ~[guava-15.0.jar:?]

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) ~[guava-15.0.jar:?]

at com.google.common.eventbus.EventBus.post(EventBus.java:267) ~[guava-15.0.jar:?]

at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) [LoadController.class:?]

at cpw.mods.fml.common.Loader.loadMods(Loader.java:500) [Loader.class:?]

at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:202) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:520) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:890) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:112) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.6.0_65]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) ~[?:1.6.0_65]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) ~[?:1.6.0_65]

at java.lang.reflect.Method.invoke(Method.java:597) ~[?:1.6.0_65]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

---- Minecraft Crash Report ----

// Don't be sad. I'll do better next time, I promise!

 

Time: 6/6/14 12:10 PM

Description: Initializing game

 

net.minecraftforge.client.model.ModelFormatException: Error parsing entry ('g Mesh1 Model', line 7) in file 'basicmod:models/test.obj' - Incorrect format

at net.minecraftforge.client.model.obj.WavefrontObject.parseGroupObject(WavefrontObject.java:511)

at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:131)

at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:56)

at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:27)

at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:65)

at com.example.examplemod.TileEntityTestRenderer.<init>(TileEntityTestRenderer.java:21)

at com.example.examplemod.BasicMod.preInit(BasicMod.java:27)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:47)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:209)

at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:188)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:47)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119)

at cpw.mods.fml.common.Loader.loadMods(Loader.java:500)

at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:202)

at net.minecraft.client.Minecraft.startGame(Minecraft.java:520)

at net.minecraft.client.Minecraft.run(Minecraft.java:890)

at net.minecraft.client.main.Main.main(Main.java:112)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at net.minecraftforge.client.model.obj.WavefrontObject.parseGroupObject(WavefrontObject.java:511)

at net.minecraftforge.client.model.obj.WavefrontObject.loadObjModel(WavefrontObject.java:131)

at net.minecraftforge.client.model.obj.WavefrontObject.<init>(WavefrontObject.java:56)

at net.minecraftforge.client.model.obj.ObjModelLoader.loadInstance(ObjModelLoader.java:27)

at net.minecraftforge.client.model.AdvancedModelLoader.loadModel(AdvancedModelLoader.java:65)

at com.example.examplemod.TileEntityTestRenderer.<init>(TileEntityTestRenderer.java:21)

at com.example.examplemod.BasicMod.preInit(BasicMod.java:27)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:47)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:209)

at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:188)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:47)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119)

at cpw.mods.fml.common.Loader.loadMods(Loader.java:500)

at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:202)

at net.minecraft.client.Minecraft.startGame(Minecraft.java:520)

 

-- Initialization --

Details:

Stacktrace:

at net.minecraft.client.Minecraft.run(Minecraft.java:890)

at net.minecraft.client.main.Main.main(Main.java:112)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

 

 

 

And the Test.obj file:

 

 

# Alias OBJ Model File

# Exported from SketchUp, © 2000-2012 Trimble Navigation Limited

# File units = meters

 

mtllib Test.mtl

 

g Mesh1 Model

 

usemtl FrontColor

v 0.257864 0.9 0.247797

vt -10.1521 -9.75579

vn 0 -1 -0

v -0.242136 0.9 0.497797

vt 9.53292 -19.5983

v -0.242136 0.9 0.247797

vt 9.53292 -9.75579

f 1/1/1 2/2/1 3/3/1

 

v 0.257864 0.9 0.497797

vt -10.1521 -19.5983

f 2/2/1 1/1/1 4/4/1

 

usemtl Material4

vt -19.5983 35.4331

vn 1 0 -0

v 0.257864 0.8 0.247797

vt -9.75579 31.4961

vt -9.75579 35.4331

f 4/5/2 5/6/2 1/7/2

 

v 0.257864 0.8 0.497797

vt -19.5983 31.4961

f 5/6/2 4/5/2 6/8/2

 

vt 10.1521 35.4331

vn 0 0 1

v -0.242136 0.8 0.497797

vt -9.53292 31.4961

vt 10.1521 31.4961

f 4/9/3 7/10/3 6/11/3

 

vt -9.53292 35.4331

f 7/10/3 4/9/3 2/12/3

 

usemtl FrontColor

v -0.242136 0.8 0.247797

vt -9.75579 31.4961

f 8/13/2 2/5/2 7/8/2

 

vt -9.75579 35.4331

f 2/5/2 8/13/2 3/14/2

 

vt 9.53292 31.4961

vn 0 0 -1

v -0.492136 0.9 0.247797

vt 19.3754 35.4331

vt 9.53292 35.4331

f 8/15/4 9/16/4 3/17/4

 

v -0.492136 0.8 0.247797

vt 19.3754 31.4961

f 9/16/4 8/15/4 10/18/4

 

v -0.492136 0.8 0.497797

vt 19.3754 -19.5983

vt 19.3754 -9.75579

f 8/3/1 11/19/1 10/20/1

 

f 11/19/1 8/3/1 7/2/1

 

v -0.242136 0.7 0.497797

vt 9.53292 27.5591

f 12/21/4 11/18/4 7/15/4

 

v -0.492136 0.7 0.497797

vt 19.3754 27.5591

f 11/18/4 12/21/4 13/22/4

 

v -0.492136 0.7 0.747797

vt 19.3754 -29.4408

f 12/2/1 14/23/1 13/19/1

 

v -0.242136 0.7 0.747797

vt 9.53292 -29.4408

f 14/23/1 12/2/1 15/24/1

 

vt -19.5983 27.5591

v -0.242136 0.8 0.747797

vt -29.4408 31.4961

vt -29.4408 27.5591

f 12/25/2 16/26/2 15/27/2

 

f 16/26/2 12/25/2 7/8/2

 

f 6/4/1 16/24/1 7/2/1

 

v 0.257864 0.8 0.747797

vt -10.1521 -29.4408

f 16/24/1 6/4/1 17/28/1

 

usemtl Material4

vt -29.4408 31.4961

v 0.257864 0.7 0.497797

f 17/29/2 18/25/2 6/8/2

 

v 0.257864 0.7 0.747797

vt -29.4408 27.5591

f 18/25/2 17/29/2 19/30/2

 

vt 10.1521 31.4961

vn 5.41434e-16 0 1

vt -9.53292 27.5591

vt 10.1521 27.5591

f 17/31/5 15/32/5 19/33/5

 

vt -9.53292 31.4961

f 15/32/5 17/31/5 16/34/5

 

usemtl FrontColor

v -0.242136 0.7 0.997797

vt 9.53292 -39.2833

f 19/28/1 20/35/1 15/24/1

 

v 0.257864 0.7 0.997797

vt -10.1521 -39.2833

f 20/35/1 19/28/1 21/36/1

 

usemtl Material3

vt -39.2833 27.5591

v 0.257864 0.6 0.747797

vt -29.4408 23.622

f 21/37/2 22/38/2 19/30/2

 

v 0.257864 0.6 0.997797

vt -39.2833 23.622

f 22/38/2 21/37/2 23/39/2

 

usemtl FrontColor

vt -10.1521 23.622

vn -5.18751e-17 1.2144e-16 -1

vt 9.53292 27.5591

vt -10.1521 27.5591

f 23/40/6 20/41/6 21/42/6

 

v -0.242136 0.6 0.997797

vt 9.53292 23.622

f 20/41/6 23/40/6 24/43/6

 

v 0.507864 0.6 0.997797

vt -19.9946 23.622

f 25/44/6 24/43/6 23/40/6

 

v -0.492136 0.6 0.997797

vt 19.3754 23.622

f 25/44/6 26/45/6 24/43/6

 

v 0.507864 0.5 0.997797

vt -19.9946 19.685

f 27/46/6 26/45/6 25/44/6

 

v -0.492136 0.5 0.997797

vt 19.3754 19.685

f 26/45/6 27/46/6 28/47/6

 

v 0.757864 0.5 0.997797

vt -29.8372 19.685

f 29/48/6 28/47/6 27/46/6

 

v -0.742136 0.5 0.997797

vt 29.218 19.685

f 29/48/6 30/49/6 28/47/6

 

v 0.757864 0.4 0.997797

vt -29.8372 15.748

f 31/50/6 30/49/6 29/48/6

 

v -0.742136 0.4 0.997797

vt 29.218 15.748

f 30/49/6 31/50/6 32/51/6

 

v 1.00786 0.4 0.997797

vt -39.6797 15.748

f 33/52/6 32/51/6 31/50/6

 

v -0.992136 0.4 0.997797

vt 39.0605 15.748

f 33/52/6 34/53/6 32/51/6

 

v 1.00786 0 0.997797

vt -39.6797 4.77056e-15

f 35/54/6 34/53/6 33/52/6

 

v -0.992136 0 0.997797

vt 39.0605 4.77056e-15

f 34/53/6 35/54/6 36/55/6

 

v -0.992136 0 -1.0022

vt 39.4568 4.74349e-15

vn 1 1.2144e-16 5.18751e-17

vt -39.2833 15.748

vt -39.2833 4.74349e-15

f 37/56/7 34/57/7 36/58/7

 

v -0.992136 0.4 0.747797

vt -29.4408 15.748

f 34/57/7 37/56/7 38/59/7

 

v -0.992136 0.5 0.747797

vt -29.4408 19.685

f 38/59/7 37/56/7 39/60/7

 

v -0.992136 0.5 0.497797

vt -19.5983 19.685

f 39/60/7 37/56/7 40/61/7

 

v -0.992136 0.6 0.497797

vt -19.5983 23.622

f 40/61/7 37/56/7 41/62/7

 

v -0.992136 0.6 0.247797

vt -9.75579 23.622

f 41/62/7 37/56/7 42/63/7

 

v -0.992136 0.7 0.247797

vt -9.75579 27.5591

f 42/63/7 37/56/7 43/64/7

 

v -0.992136 0.6 -0.252203

vt 9.92925 23.622

f 43/64/7 37/56/7 44/65/7

 

v -0.992136 0.5 -0.502203

vt 19.7718 19.685

f 44/65/7 37/56/7 45/66/7

 

v -0.992136 0.4 -0.752203

vt 29.6143 15.748

f 45/66/7 37/56/7 46/67/7

 

v -0.992136 0.4 -1.0022

vt 39.4568 15.748

f 46/67/7 37/56/7 47/68/7

 

usemtl Material3

vt 39.0605 15.748

v 1.00786 0 -1.0022

vt -39.6797 0

vt 39.0605 0

f 47/69/4 48/70/4 37/71/4

 

v 1.00786 0.4 -1.0022

vt -39.6797 15.748

f 48/70/4 47/69/4 49/72/4

 

v -0.742136 0.4 -1.0022

vt 29.218 15.748

f 49/72/4 47/69/4 50/73/4

 

vt -39.0605 39.4568

vn 0 1 -0

v -0.742136 0.4 -0.752203

vt -29.218 29.6143

vt -29.218 39.4568

f 47/74/8 51/75/8 50/76/8

 

vt -39.0605 29.6143

f 51/75/8 47/74/8 46/77/8

 

v -0.992136 0.5 -0.752203

vt 39.0605 19.685

vt 39.0605 15.748

f 52/78/4 51/73/4 46/79/4

 

v -0.742136 0.5 -0.752203

f 51/73/4 52/78/4 53/49/4

 

v -0.742136 0.5 -0.502203

vt -29.218 19.7718

f 52/77/8 54/80/8 53/75/8

 

vt -39.0605 19.7718

f 54/80/8 52/77/8 45/81/8

 

usemtl FrontColor

vt 29.6143 19.685

f 52/82/7 45/66/7 46/67/7

 

usemtl Material3

v -0.992136 0.6 -0.502203

vt 39.0605 23.622

f 55/83/4 54/49/4 45/78/4

 

v -0.742136 0.6 -0.502203

vt 29.218 23.622

f 54/49/4 55/83/4 56/84/4

 

v -0.742136 0.6 -0.252203

vt -29.218 9.92925

f 55/81/8 57/85/8 56/80/8

 

vt -39.0605 9.92925

f 57/85/8 55/81/8 44/86/8

 

usemtl FrontColor

vt 19.7718 23.622

f 55/87/7 44/65/7 45/66/7

 

usemtl Material3

v -0.992136 0.7 -0.252203

vt 39.0605 27.5591

f 58/88/4 57/84/4 44/83/4

 

v -0.742136 0.7 -0.252203

vt 29.218 27.5591

f 57/84/4 58/88/4 59/89/4

 

usemtl FrontColor

vt 29.218 9.92925

vt 39.0605 -9.75579

vt 39.0605 9.92925

f 59/90/1 43/91/1 58/92/1

 

v -0.742136 0.7 0.247797

vt 29.218 -9.75579

f 43/91/1 59/90/1 60/93/1

 

usemtl Material4

vt 9.75579 27.5591

vn -1 0 -0

v -0.742136 0.8 -0.252203

vt -9.92925 31.4961

vt -9.92925 27.5591

f 60/94/9 61/95/9 59/96/9

 

v -0.742136 0.8 0.247797

vt 9.75579 31.4961

f 61/95/9 60/94/9 62/97/9

 

usemtl FrontColor

vt 29.218 31.4961

v -0.492136 0.7 0.247797

f 62/98/4 63/22/4 60/89/4

 

f 63/22/4 62/98/4 10/18/4

 

usemtl Material4

vt -19.3754 -9.75579

vt -29.218 -9.75579

f 10/99/8 61/85/8 62/100/8

 

v -0.492136 0.8 -0.252203

vt -19.3754 9.92925

f 61/85/8 10/99/8 64/101/8

 

vt 9.75579 31.4961

vn -1 -1.95952e-46 -1.80478e-16

v -0.492136 0.9 -0.252203

vt -9.92925 35.4331

vt -9.92925 31.4961

f 10/102/10 65/103/10 64/104/10

 

vt 9.75579 35.4331

f 65/103/10 10/102/10 9/105/10

 

vt -9.53292 -9.75579

f 3/106/8 65/101/8 9/99/8

 

v -0.242136 0.9 -0.252203

vt -9.53292 9.92925

f 65/101/8 3/106/8 66/107/8

 

vt 9.75579 35.4331

v -0.242136 1 -0.252203

vt -9.92925 39.3701

vt -9.92925 35.4331

f 3/108/9 67/109/9 66/110/9

 

v -0.242136 1 0.247797

vt 9.75579 39.3701

f 67/109/9 3/108/9 68/111/9

 

vn -9.02389e-17 0 1

v 0.257864 1 0.247797

vt 10.1521 39.3701

vt -9.53292 39.3701

f 3/12/11 69/112/11 68/113/11

 

f 69/112/11 3/12/11 1/9/11

 

v 0.257864 0.9 -0.252203

vt 9.92925 35.4331

vt -9.75579 39.3701

f 70/114/2 69/115/2 1/7/2

 

v 0.257864 1 -0.252203

vt 9.92925 39.3701

f 69/115/2 70/114/2 71/116/2

 

vt -10.1521 35.4331

vn -9.02389e-17 0 -1

vt 9.53292 39.3701

vt -10.1521 39.3701

f 70/117/12 67/118/12 71/119/12

 

vt 9.53292 35.4331

f 67/118/12 70/117/12 66/120/12

 

vt 10.1521 9.92925

v -0.242136 0.9 -0.502203

vt -9.53292 19.7718

f 70/121/8 72/122/8 66/107/8

 

v 0.257864 0.9 -0.502203

vt 10.1521 19.7718

f 72/122/8 70/121/8 73/123/8

 

v 0.257864 0.8 -0.502203

vt 19.7718 31.4961

vt 19.7718 35.4331

f 70/114/2 74/124/2 73/125/2

 

v 0.257864 0.8 -0.252203

vt 9.92925 31.4961

f 74/124/2 70/114/2 75/126/2

 

v 0.507864 0.8 -0.252203

vt -19.9946 31.4961

vt -10.1521 31.4961

f 70/117/4 76/127/4 75/128/4

 

v 0.507864 0.9 -0.252203

vt -19.9946 35.4331

f 76/127/4 70/117/4 77/129/4

 

v 0.507864 0.9 0.247797

vt 19.9946 -9.75579

vt 19.9946 9.92925

f 70/121/8 78/130/8 77/131/8

 

vt 10.1521 -9.75579

f 78/130/8 70/121/8 1/132/8

 

vt 19.9946 35.4331

f 5/11/3 78/133/3 1/9/3

 

v 0.507864 0.8 0.247797

vt 19.9946 31.4961

f 78/133/3 5/11/3 79/134/3

 

usemtl Material5

v 0.507864 0.8 0.497797

vt 19.9946 -19.5983

f 5/132/8 80/135/8 79/130/8

 

vt 10.1521 -19.5983

f 80/135/8 5/132/8 6/136/8

 

vt 10.1521 27.5591

f 18/137/3 80/134/3 6/11/3

 

v 0.507864 0.7 0.497797

vt 19.9946 27.5591

f 80/134/3 18/137/3 81/138/3

 

v 0.507864 0.7 0.747797

vt 19.9946 -29.4408

f 18/136/8 82/139/8 81/135/8

 

vt 10.1521 -29.4408

f 82/139/8 18/136/8 19/140/8

 

vt 10.1521 23.622

f 22/141/3 82/138/3 19/137/3

 

v 0.507864 0.6 0.747797

vt 19.9946 23.622

f 82/138/3 22/141/3 83/142/3

 

usemtl Material3

vt 19.9946 -39.2833

f 22/140/8 25/143/8 83/139/8

 

vt 10.1521 -39.2833

f 25/143/8 22/140/8 23/144/8

 

v 0.507864 0.5 0.747797

f 25/39/2 84/60/2 83/38/2

 

vt -39.2833 19.685

f 84/60/2 25/39/2 27/145/2

 

vt 29.8372 -39.2833

f 29/146/8 84/139/8 27/143/8

 

v 0.757864 0.5 0.747797

vt 29.8372 -29.4408

f 84/139/8 29/146/8 85/147/8

 

v 0.757864 0.4 0.747797

vt -29.4408 15.748

f 29/145/2 86/148/2 85/60/2

 

vt -39.2833 15.748

f 86/148/2 29/145/2 31/149/2

 

vt 39.6797 -39.2833

f 33/150/8 86/147/8 31/146/8

 

v 1.00786 0.4 0.747797

vt 39.6797 -29.4408

f 86/147/8 33/150/8 87/151/8

 

vt -39.2833 15.748

vt 39.4568 0

f 33/152/2 48/153/2 87/148/2

 

vt -39.2833 0

f 48/153/2 33/152/2 35/154/2

 

v 1.00786 0.5 0.747797

f 87/148/2 48/153/2 88/60/2

 

v 1.00786 0.5 0.497797

f 88/60/2 48/153/2 89/61/2

 

v 1.00786 0.6 0.497797

f 89/61/2 48/153/2 90/62/2

 

v 1.00786 0.6 0.247797

f 90/62/2 48/153/2 91/63/2

 

v 1.00786 0.7 0.247797

f 91/63/2 48/153/2 92/64/2

 

v 1.00786 0.6 -0.252203

vt 9.92925 23.622

f 92/64/2 48/153/2 93/155/2

 

v 1.00786 0.5 -0.502203

f 93/155/2 48/153/2 94/66/2

 

v 1.00786 0.4 -0.752203

vt 29.6143 15.748

f 94/66/2 48/153/2 95/156/2

 

vt 39.4568 15.748

f 95/156/2 48/153/2 49/157/2

 

v 0.757864 0.4 -1.0022

vt 29.8372 39.4568

vt 39.6797 29.6143

vt 39.6797 39.4568

f 96/158/8 95/159/8 49/160/8

 

v 0.757864 0.4 -0.752203

vt 29.8372 29.6143

f 95/159/8 96/158/8 97/161/8

 

v 0.757864 0.5 -0.752203

f 96/157/2 98/82/2 97/156/2

 

v 0.757864 0.5 -1.0022

vt 39.4568 19.685

f 98/82/2 96/157/2 99/162/2

 

vt -29.8372 15.748

v -0.742136 0.5 -1.0022

vt -29.8372 19.685

f 96/163/4 100/49/4 99/164/4

 

f 100/49/4 96/163/4 50/73/4

 

f 49/72/4 50/73/4 96/163/4

 

vt -29.6143 15.748

vt -39.4568 19.685

vt -39.4568 15.748

f 51/165/9 100/166/9 50/167/9

 

vt -29.6143 19.685

f 100/166/9 51/165/9 53/168/9

 

v -0.492136 0.5 -0.752203

vt -19.3754 29.6143

f 101/169/8 100/76/8 53/75/8

 

v -0.492136 0.5 -1.0022

vt -19.3754 39.4568

f 100/76/8 101/169/8 102/170/8

 

v -0.492136 0.6 -1.0022

vt -39.4568 23.622

f 101/168/9 103/171/9 102/166/9

 

v -0.492136 0.6 -0.752203

vt -29.6143 23.622

f 103/171/9 101/168/9 104/172/9

 

usemtl Material5

vt 19.3754 19.685

v -0.742136 0.6 -0.752203

vt 19.3754 23.622

f 101/173/4 105/84/4 104/174/4

 

f 105/84/4 101/173/4 53/49/4

 

vt -19.7718 19.685

f 54/175/9 105/172/9 53/168/9

 

vt -19.7718 23.622

f 105/172/9 54/175/9 56/176/9

 

v -0.492136 0.6 -0.502203

vt -19.3754 19.7718

f 106/177/8 105/75/8 56/80/8

 

f 105/75/8 106/177/8 104/169/8

 

v -0.492136 0.7 -0.752203

vt -29.6143 27.5591

f 106/176/9 107/178/9 104/172/9

 

v -0.492136 0.7 -0.502203

vt -19.7718 27.5591

f 107/178/9 106/176/9 108/179/9

 

vn 3.60956e-16 0 -1

v -0.742136 0.7 -0.502203

f 106/45/13 109/89/13 108/22/13

 

f 109/89/13 106/45/13 56/84/13

 

vt -9.92925 23.622

f 57/180/9 109/179/9 56/176/9

 

f 109/179/9 57/180/9 59/96/9

 

v -0.492136 0.7 -0.252203

f 110/101/8 109/80/8 59/85/8

 

f 109/80/8 110/101/8 108/177/8

 

v -0.492136 0.8 -0.502203

vt -19.7718 31.4961

f 110/96/9 111/181/9 108/179/9

 

f 111/181/9 110/96/9 64/95/9

 

usemtl Material4

vt 19.3754 27.5591

vt 19.3754 31.4961

f 110/182/4 61/98/4 64/183/4

 

f 61/98/4 110/182/4 59/89/4

 

usemtl Material5

v -0.242136 0.8 -0.252203

f 112/107/8 111/177/8 64/101/8

 

v -0.242136 0.8 -0.502203

f 111/177/8 112/107/8 113/122/8

 

usemtl Material4

vt -9.92925 31.4961

vt -19.7718 35.4331

f 112/184/9 72/185/9 113/181/9

 

f 72/185/9 112/184/9 66/110/9

 

vt 9.53292 31.4961

vn 1.80478e-16 0 -1

vt 9.53292 35.4331

f 112/186/14 65/16/14 66/187/14

 

f 65/16/14 112/186/14 64/18/14

 

vn -6.1073e-33 0 -1

f 72/17/15 74/128/15 113/15/15

 

f 74/128/15 72/17/15 73/117/15

 

v -0.242136 0.8 -0.752203

vt -9.53292 29.6143

f 74/123/8 114/188/8 113/122/8

 

v 0.257864 0.8 -0.752203

vt 10.1521 29.6143

f 114/188/8 74/123/8 115/189/8

 

vn 1 0 1.80478e-16

v 0.257864 0.7 -0.752203

vt 29.6143 27.5591

vt 29.6143 31.4961

f 74/124/16 116/190/16 115/191/16

 

v 0.257864 0.7 -0.502203

vt 19.7718 27.5591

f 116/190/16 74/124/16 117/192/16

 

usemtl Material5

v 0.507864 0.7 -0.502203

vt -19.9946 27.5591

f 74/128/4 118/193/4 117/42/4

 

v 0.507864 0.8 -0.502203

f 118/193/4 74/128/4 119/127/4

 

vt 19.9946 19.7718

f 74/123/8 76/131/8 119/194/8

 

f 76/131/8 74/123/8 75/121/8

 

f 76/126/2 118/192/2 119/124/2

 

v 0.507864 0.7 -0.252203

vt 9.92925 27.5591

f 118/192/2 76/126/2 120/195/2

 

usemtl Material4

v 0.757864 0.7 -0.252203

vt -29.8372 27.5591

f 76/127/4 121/196/4 120/193/4

 

v 0.757864 0.8 -0.252203

vt -29.8372 31.4961

f 121/196/4 76/127/4 122/197/4

 

v 0.757864 0.8 0.247797

vt 29.8372 -9.75579

vt 29.8372 9.92925

f 76/131/8 123/198/8 122/199/8

 

f 123/198/8 76/131/8 79/130/8

 

f 76/126/2 78/7/2 79/6/2

 

f 78/7/2 76/126/2 77/114/2

 

v 0.507864 0.7 0.247797

vt 29.8372 31.4961

f 124/138/3 123/200/3 79/134/3

 

v 0.757864 0.7 0.247797

vt 29.8372 27.5591

f 123/200/3 124/138/3 125/201/3

 

usemtl Material5

v 0.757864 0.7 0.497797

vt 29.8372 -19.5983

f 124/130/8 126/202/8 125/198/8

 

f 126/202/8 124/130/8 81/135/8

 

f 124/64/2 80/8/2 81/25/2

 

f 80/8/2 124/64/2 79/6/2

 

v 0.507864 0.6 0.497797

f 127/142/3 126/201/3 81/138/3

 

v 0.757864 0.6 0.497797

vt 29.8372 23.622

f 126/201/3 127/142/3 128/203/3

 

v 0.757864 0.6 0.747797

f 127/135/8 129/147/8 128/202/8

 

f 129/147/8 127/135/8 83/139/8

 

vt -19.5983 23.622

f 127/204/2 82/30/2 83/38/2

 

f 82/30/2 127/204/2 81/25/2

 

vt 19.9946 19.685

f 84/205/3 129/203/3 83/142/3

 

vt 29.8372 19.685

f 129/203/3 84/205/3 85/206/3

 

v 0.757864 0.5 0.497797

vt -19.5983 19.685

f 130/207/2 129/38/2 85/60/2

 

f 129/38/2 130/207/2 128/204/2

 

usemtl Material3

vn -3.60956e-16 0 1

vt 39.6797 23.622

f 130/206/17 90/208/17 128/203/17

 

vt 39.6797 19.685

f 90/208/17 130/206/17 89/209/17

 

vt 39.6797 -19.5983

f 130/202/8 88/151/8 89/210/8

 

f 88/151/8 130/202/8 85/147/8

 

vt 29.8372 15.748

vt 39.6797 19.685

f 86/211/3 88/212/3 85/206/3

 

vt 39.6797 15.748

f 88/212/3 86/211/3 87/213/3

 

v 0.757864 0.6 0.247797

f 90/210/8 131/198/8 128/202/8

 

vt 39.6797 -9.75579

f 131/198/8 90/210/8 91/214/8

 

vt 39.6797 27.5591

vt 39.6797 23.622

f 92/215/3 131/203/3 91/216/3

 

f 131/203/3 92/215/3 125/201/3

 

f 92/214/8 121/199/8 125/198/8

 

v 1.00786 0.7 -0.252203

vt 39.6797 9.92925

f 121/199/8 92/214/8 132/217/8

 

f 132/195/2 92/64/2 93/155/2

 

vt -39.6797 23.622

vt -39.6797 27.5591

f 93/218/4 121/196/4 132/219/4

 

v 0.757864 0.6 -0.252203

vt -29.8372 23.622

f 121/196/4 93/218/4 133/220/4

 

v 0.757864 0.6 -0.502203

vt 29.8372 19.7718

f 93/217/8 134/221/8 133/199/8

 

v 1.00786 0.6 -0.502203

vt 39.6797 19.7718

f 134/221/8 93/217/8 135/222/8

 

f 135/87/2 93/155/2 94/66/2

 

vt -39.6797 19.685

vn -3.60956e-16 0 -1

vt -39.6797 23.622

f 94/223/18 134/220/18 135/224/18

 

v 0.757864 0.5 -0.502203

f 134/220/18 94/223/18 136/164/18

 

f 94/222/8 98/161/8 136/221/8

 

v 1.00786 0.5 -0.752203

f 98/161/8 94/222/8 137/159/8

 

f 137/82/2 94/66/2 95/156/2

 

vt -39.6797 19.685

f 95/72/4 98/164/4 137/225/4

 

f 98/164/4 95/72/4 97/163/4

 

usemtl Material5

f 98/82/2 134/87/2 136/66/2

 

v 0.757864 0.6 -0.752203

vt 29.6143 23.622

f 134/87/2 98/82/2 138/226/2

 

v 0.507864 0.6 -0.752203

f 98/164/4 139/44/4 138/220/4

 

v 0.507864 0.5 -0.752203

f 139/44/4 98/164/4 140/46/4

 

usemtl Material3

v 0.507864 0.5 -1.0022

vt 19.9946 39.4568

vt 19.9946 29.6143

f 98/161/8 141/227/8 140/228/8

 

f 141/227/8 98/161/8 99/158/8

 

f 99/164/4 102/173/4 141/46/4

 

f 99/164/4 100/49/4 102/173/4

 

f 103/174/4 141/46/4 102/173/4

 

v 0.507864 0.6 -1.0022

f 141/46/4 103/174/4 142/44/4

 

v -0.242136 0.6 -1.0022

vt 9.53292 23.622

f 142/44/4 103/174/4 143/229/4

 

v -0.242136 0.6 -0.752203

vt -9.53292 39.4568

f 103/170/8 144/188/8 143/230/8

 

f 144/188/8 103/170/8 104/169/8

 

usemtl Material5

vt 9.53292 23.622

f 107/182/4 144/231/4 104/174/4

 

v -0.242136 0.7 -0.752203

vt 9.53292 27.5591

f 144/231/4 107/182/4 145/232/4

 

v -0.242136 0.7 -0.502203

f 107/169/8 146/122/8 145/188/8

 

f 146/122/8 107/169/8 108/177/8

 

f 111/183/4 146/21/4 108/182/4

 

f 146/21/4 111/183/4 113/15/4

 

usemtl Material4

vt -29.6143 31.4961

vn -1 0 -1.80478e-16

f 114/233/19 146/179/19 113/181/19

 

f 146/179/19 114/233/19 145/178/19

 

vt 9.53292 31.4961

f 114/234/4 116/42/4 145/232/4

 

f 116/42/4 114/234/4 115/128/4

 

usemtl Material3

v -0.242136 0.7 -1.0022

f 116/189/8 147/230/8 145/188/8

 

v 0.257864 0.7 -1.0022

vt 10.1521 39.4568

f 147/230/8 116/189/8 148/235/8

 

vt 29.6143 27.5591

vn 1 0 -1.80478e-16

v 0.257864 0.6 -1.0022

vt 39.4568 23.622

vt 39.4568 27.5591

f 116/236/20 149/237/20 148/238/20

 

v 0.257864 0.6 -0.752203

f 149/237/20 116/236/20 150/226/20

 

usemtl Material5

f 116/42/4 139/44/4 150/40/4

 

v 0.507864 0.7 -0.752203

f 139/44/4 116/42/4 151/193/4

 

f 116/189/8 118/194/8 151/228/8

 

f 118/194/8 116/189/8 117/123/8

 

f 118/192/2 139/226/2 151/236/2

 

v 0.507864 0.6 -0.502203

f 139/226/2 118/192/2 152/87/2

 

f 118/193/4 134/220/4 152/44/4

 

v 0.757864 0.7 -0.502203

f 134/220/4 118/193/4 153/196/4

 

f 118/194/8 121/199/8 153/221/8

 

f 121/199/8 118/194/8 120/131/8

 

f 121/195/2 134/87/2 153/192/2

 

f 134/87/2 121/195/2 133/155/2

 

f 134/221/8 139/228/8 152/194/8

 

f 139/228/8 134/221/8 138/161/8

 

usemtl Material3

f 142/227/8 150/189/8 139/228/8

 

f 150/189/8 142/227/8 149/235/8

 

f 142/44/4 143/229/4 149/40/4

 

vt 9.53292 27.5591

f 147/239/4 149/40/4 143/229/4

 

f 149/40/4 147/239/4 148/42/4

 

vn -1 0 -1.80478e-16

vt -39.4568 27.5591

f 144/172/21 147/240/21 143/171/21

 

f 147/240/21 144/172/21 145/178/21

 

f 139/226/2 141/162/2 142/237/2

 

f 141/162/2 139/226/2 140/82/2

 

usemtl Material4

f 121/195/2 123/6/2 125/64/2

 

f 123/6/2 121/195/2 122/126/2

 

usemtl Material5

f 126/25/2 131/63/2 125/64/2

 

f 131/63/2 126/25/2 128/204/2

 

usemtl Material4

v -0.117136 1 -0.127203

vt -4.61166 5.00799

f 67/107/8 154/241/8 71/121/8

 

v -0.117136 1 0.122797

vt -4.61166 -4.83453

f 154/241/8 67/107/8 155/242/8

 

f 68/106/8 155/242/8 67/107/8

 

f 155/242/8 68/106/8 69/132/8

 

v 0.132864 1 0.122797

vt 5.23086 -4.83453

f 155/242/8 69/132/8 156/243/8

 

v 0.132864 1 -0.127203

vt 5.23086 5.00799

f 156/243/8 69/132/8 157/244/8

 

f 71/121/8 157/244/8 69/132/8

 

f 71/121/8 154/241/8 157/244/8

 

usemtl FrontColor

v 0.132864 1.6 -0.127203

vt 5.23086 62.9921

vn 9.02389e-17 4.89881e-47 1

vt -4.61166 39.3701

vt 5.23086 39.3701

f 158/245/22 154/246/22 157/247/22

 

v -0.117136 1.6 -0.127203

vt -4.61166 62.9921

f 154/246/22 158/245/22 159/248/22

 

vt -5.23086 5.00799

v -0.117136 1.6 0.122797

vt 4.61166 -4.83453

vt 4.61166 5.00799

f 158/249/1 160/250/1 159/251/1

 

v 0.132864 1.6 0.122797

vt -5.23086 -4.83453

f 160/250/1 158/249/1 161/252/1

 

vt -5.00799 62.9921

vn -1 -1.17884e-62 2.17148e-32

vt 4.83453 39.3701

vt 4.83453 62.9921

f 158/253/23 156/254/23 161/255/23

 

vt -5.00799 39.3701

f 156/254/23 158/253/23 157/256/23

 

vt -5.23086 39.3701

vn 1.22146e-32 0 -1

vt 4.61166 62.9921

vt -5.23086 62.9921

f 156/257/24 160/258/24 161/259/24

 

vt 4.61166 39.3701

f 160/258/24 156/257/24 155/260/24

 

vt 5.00799 39.3701

vt -4.83453 62.9921

vt -4.83453 39.3701

f 154/261/2 160/262/2 155/263/2

 

vt 5.00799 62.9921

f 160/262/2 154/261/2 159/264/2

 

vt -9.75579 27.5591

f 11/8/2 63/265/2 10/13/2

 

f 63/265/2 11/8/2 13/25/2

 

v -0.742136 0.7 0.497797

vt 29.218 -19.5983

f 162/266/1 63/20/1 13/19/1

 

f 63/20/1 162/266/1 60/93/1

 

v -0.742136 0.6 0.247797

vt -9.75579 23.622

f 162/25/2 163/267/2 60/265/2

 

v -0.742136 0.6 0.497797

f 163/267/2 162/25/2 164/204/2

 

v -0.492136 0.6 0.497797

f 162/89/4 165/45/4 164/84/4

 

f 165/45/4 162/89/4 13/22/4

 

f 14/30/2 165/204/2 13/25/2

 

v -0.492136 0.6 0.747797

f 165/204/2 14/30/2 166/38/2

 

vt 19.3754 27.5591

vn 1.44382e-15 0 -1

v -0.242136 0.6 0.747797

vt 9.53292 23.622

vt 19.3754 23.622

f 14/268/25 167/269/25 166/270/25

 

vt 9.53292 27.5591

f 167/269/25 14/268/25 15/271/25

 

vt -29.4408 23.622

f 20/37/2 167/272/2 15/27/2

 

f 167/272/2 20/37/2 24/39/2

 

vt 19.3754 -39.2833

f 26/273/1 167/24/1 24/35/1

 

f 167/24/1 26/273/1 166/23/1

 

v -0.492136 0.5 0.747797

f 26/39/2 168/60/2 166/38/2

 

f 168/60/2 26/39/2 28/145/2

 

vt 29.218 -39.2833

f 30/274/1 168/23/1 28/273/1

 

v -0.742136 0.5 0.747797

vt 29.218 -29.4408

f 168/23/1 30/274/1 169/275/1

 

v -0.742136 0.4 0.747797

vt -29.4408 15.748

vt -29.4408 19.685

f 30/145/2 170/276/2 169/277/2

 

f 170/276/2 30/145/2 32/149/2

 

vt 39.0605 -39.2833

f 34/278/1 170/275/1 32/274/1

 

vt 39.0605 -29.4408

f 170/275/1 34/278/1 38/279/1

 

vt 39.0605 19.685

vn 1.44382e-15 0 -1

vt 29.218 15.748

vt 39.0605 15.748

f 39/280/26 170/281/26 38/282/26

 

vt 29.218 19.685

f 170/281/26 39/280/26 169/283/26

 

v -0.742136 0.5 0.497797

f 39/279/1 171/266/1 169/275/1

 

vt 39.0605 -19.5983

f 171/266/1 39/279/1 40/284/1

 

f 41/83/4 171/49/4 40/78/4

 

f 171/49/4 41/83/4 164/84/4

 

f 41/284/1 163/93/1 164/266/1

 

f 163/93/1 41/284/1 42/91/1

 

f 43/88/4 163/84/4 42/83/4

 

f 163/84/4 43/88/4 60/89/4

 

v -0.742136 0.6 0.747797

f 172/272/2 171/207/2 164/204/2

 

f 171/207/2 172/272/2 169/277/2

 

vt 29.218 23.622

vn -1.44382e-15 0 -1

vt 19.3754 19.685

vt 29.218 19.685

f 172/285/27 168/286/27 169/287/27

 

vt 19.3754 23.622

f 168/286/27 172/285/27 166/288/27

 

f 172/275/1 165/19/1 166/23/1

 

f 165/19/1 172/275/1 164/266/1

 

vt 9.92925 27.5591

f 58/289/7 43/64/7 44/65/7

 

 

 

Any ideas why this is happening?

We all stuff up sometimes... But I seem to be at the bottom of that pot.

Link to comment
Share on other sites

It doesn't seem to be the problem...

 

"net.minecraftforge.client.model.ModelFormatException: Error parsing entry ('g Mesh1 Model', line 7) in file 'basicmod:models/test.obj' - Incorrect format"

Oh yeah, you're right, I missed that, sorry  {facepalm}

 

I can't be of much help then; perhaps you could step through WaveFrontObject.loadObjModel and see why it gets upset.

It is looking for a pattern that matches this

    private static Pattern groupObjectPattern = Pattern.compile("([go]( [\\w\\d]+) *\\n)|([go]( [\\w\\d]+) *$)");

http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html

 

The wavefront files I'm familiar with just have one word after the g.  You could try deleting the word Model, or replace it with a single character, and seeing if it works.

 

-TGG

 

 

 

 

Link to comment
Share on other sites

It's all good mate. I fixed it xD

 

What I had was an object file exported from Sketch Up. It wasn't in the correct format etc. etc.. So I downloaded blender, imported the .obj, then exported it again with the right check boxes checked. Model doesn't crash and now I am just having rendering issues: http://www.minecraftforge.net/forum/index.php/topic,19855.0.html

We all stuff up sometimes... But I seem to be at the bottom of that pot.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • when i enter my bf's server after it does all the loading, encrypting a message popps up: "Internal Exception: java.lang.IndexOutOfBoundaException: index: 4, length: 13996 (expected: range(0, 800))"  one time i saw myself in the server but then got kicked out with the same message. My boyfriend's POV is me joining and leaving the server. I play on 1.19.2 version.  i think i t may be an issue with a mod me and bf recently updated.
    • I am trying to install fear nightfall mod pack on curseforge but it keeps saying error forge modloader installation falied but I played it a week ago can someone please help.
    • Found the solution, will be closing this soon. The Minecraft mining overlay can be rendered using: "serverplayer.connection.send(new ClientboundBlockDestructionPacket(serverplayer.getId(), blockpos, i));" Everything else is completely unnecessary, and I was making this harder than it had to be.
    • [17:35:03] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\moraw\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [17:35:03] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.12 by Eclipse Adoptium; OS Windows 10 arch amd64 version 10.0 [17:35:03] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [17:35:03] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [17:35:03] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\moraw\Documents\Livestock\run [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\moraw\Documents\Livestock\run\mods [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\moraw\Documents\Livestock\run\config [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\moraw\Documents\Livestock\run\config\fml.toml [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: [17:35:03] [main/INFO] [ne.mi.fm.lo.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [17:35:03] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [17:35:03] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [17:35:03] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 1.0 loading [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 5 [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [17:35:03] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@34b7ac2f [17:35:04] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/moraw/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23126!/ Service=ModLauncher Env=CLIENT [17:35:04] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [17:35:04] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\moraw\Documents\Livestock\run [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\moraw\Documents\Livestock\run\mods [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\moraw\Documents\Livestock\run\config [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\moraw\Documents\Livestock\run\config\fml.toml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing ModFile [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using forgeclientuserdev as launch service [17:35:04] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: Intel(R) Iris(R) Xe Graphics GL version 4.6.0 - Build 31.0.101.5594, Intel [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [17:35:04] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' [17:35:04] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: [] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Got mod coordinates livestock%%C:/Users/moraw/Documents/Livestock\build\resources\main;livestock%%C:/Users/moraw/Documents/Livestock\build\classes\java\main from env [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{livestock=[C:\Users\moraw\Documents\Livestock\build\resources\main, C:\Users\moraw\Documents\Livestock\build\classes\java\main]}] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with {minecraft} mods - versions {1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\Documents\Livestock\build\resources\main [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {livestock} mods - versions {0.01-1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from , it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from main, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with {minecraft} mods - versions {1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\moraw\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1\forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/method_redirector.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\Documents\Livestock\build\resources\main [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {livestock} mods - versions {0.01-1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\moraw\Documents\Livestock\build\resources\main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 3 language providers [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Configured system mods: [minecraft, forge] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: minecraft [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: forge [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 2 mod requirements (2 mandatory, 0 optional) [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) [17:35:05] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 34318 method mappings from methods.csv [17:35:05] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 31014 field mappings from fields.csv [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml [17:35:05] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading coremod transformers [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@9b76b60 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@493ac8d3 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@13dbed9e to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@67531e3a to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2b38b1f to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1d50a7ca to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@51ab1ee3 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2e766822 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3003e580 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml Exception in thread "main" java.lang.module.ResolutionException: Modules classes and livestock export package net.s3alampr3y.livestockmod.entity.client to module minecraft at java.base/java.lang.module.Resolver.resolveFail(Resolver.java:901) at java.base/java.lang.module.Resolver.failTwoSuppliers(Resolver.java:815) at java.base/java.lang.module.Resolver.checkExportSuppliers(Resolver.java:736) at java.base/java.lang.module.Resolver.finish(Resolver.java:380) at java.base/java.lang.module.Configuration.<init>(Configuration.java:140) at java.base/java.lang.module.Configuration.resolveAndBind(Configuration.java:494) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.ModuleLayerHandler.buildLayer(ModuleLayerHandler.java:75) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformationServicesHandler.buildTransformingClassLoader(TransformationServicesHandler.java:60) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:106) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) Process finished with exit code 1  
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.