mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 08:14:23 +01:00
Fix syntax errors in models
This commit is contained in:
parent
da4a5ed529
commit
19938313dd
2 changed files with 6 additions and 10 deletions
|
@ -153,15 +153,14 @@
|
|||
"type": "mson:slot",
|
||||
"name": "tail",
|
||||
"implementation": "com.minelittlepony.client.model.part.PonyTail",
|
||||
"data": {
|
||||
"texture": {"w": 128, "h": 64},
|
||||
"locals": {
|
||||
"segments": 4
|
||||
},
|
||||
"data": {
|
||||
"segment_0": {
|
||||
"type": "mson:slot",
|
||||
"name": "segment_0",
|
||||
"texture": {"w": 128, "h": 64},
|
||||
"implementation": "com.minelittlepony.client.model.part.PonyTail$Segment",
|
||||
"locals": { "segment_index": 0 },
|
||||
"data": "minelittlepony:components/tail_segment"
|
||||
|
@ -169,7 +168,6 @@
|
|||
"segment_1": {
|
||||
"type": "mson:slot",
|
||||
"name": "segment_1",
|
||||
"texture": {"w": 128, "h": 64},
|
||||
"implementation": "com.minelittlepony.client.model.part.PonyTail$Segment",
|
||||
"locals": { "segment_index": 1 },
|
||||
"data": "minelittlepony:components/tail_segment"
|
||||
|
@ -177,7 +175,6 @@
|
|||
"segment_2": {
|
||||
"type": "mson:slot",
|
||||
"name": "segment_2",
|
||||
"texture": {"w": 128, "h": 64},
|
||||
"implementation": "com.minelittlepony.client.model.part.PonyTail$Segment",
|
||||
"locals": { "segment_index": 2 },
|
||||
"data": "minelittlepony:components/tail_segment"
|
||||
|
@ -185,7 +182,6 @@
|
|||
"segment_3": {
|
||||
"type": "mson:slot",
|
||||
"name": "segment_3",
|
||||
"texture": {"w": 128, "h": 64},
|
||||
"implementation": "com.minelittlepony.client.model.part.PonyTail$Segment",
|
||||
"locals": { "segment_index": 3 },
|
||||
"data": "minelittlepony:components/tail_segment"
|
||||
|
|
|
@ -13,13 +13,13 @@
|
|||
"pivot": [0, 0, 4],
|
||||
"rotate": [0, 0, 0],
|
||||
"cubes": [
|
||||
{"from": [-4, -1, -8], "size": [8, 5, 8], texture: { "u": 0, "v": 24 }, "dilate": -0.1 }
|
||||
{"from": [-4, -1, -8], "size": [8, 5, 8], "texture": { "u": 0, "v": 24 }, "dilate": -0.1 }
|
||||
]
|
||||
},
|
||||
"jaw": {
|
||||
"pivot": [0, 0, 4],
|
||||
"cubes": [
|
||||
{"from": [-4, 1, -8], "size": [8, 3, 8], texture: { "u": 0, "v": 13 }, "dilate": -0.001 }
|
||||
{"from": [-4, 1, -8], "size": [8, 3, 8], "texture": { "u": 0, "v": 13 }, "dilate": -0.001 }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue