Fixed texturing on piglin tails. Closes #213

This commit is contained in:
Sollace 2022-11-02 22:50:03 +01:00
parent 5546e44719
commit b686bba005
2 changed files with 8 additions and 3 deletions

View file

@ -1,14 +1,14 @@
{
"parent": "minelittlepony:components/snout",
"texture": {"w": 64, "h": 64, "u": 16, "v": 8},
"data": {
"texture": {"w": 64, "h": 64, "u": 16, "v": 8},
"data": {
"mare": {
"type": "mson:planar",
"pivot": ["#x", "#y", "#z"],
"north": [-2, -1, -7, 4, 3, 10, 13],
"up": [-2, -1, -7, 4, 1, 10, 13],
"down": [-2, 2, -7, 4, 1, 18, 7],
"west": [-2, -1, -7, 1, 3, 9, 13],
"west": [-2, -1, -7, 1, 3, 9, 13],
"east": [ 2, -1, -7, 1, 3, 14, 13]
}
}

View file

@ -158,12 +158,14 @@
},
"data": {
"tail": {
"pivot": [0, 0, 14],
"children": {
"segment_0": {
"type": "mson:slot",
"name": "segment_0",
"implementation": "com.minelittlepony.client.model.part.PonyTail$Segment",
"locals": { "segment_index": 0 },
"texture": {"w": 128, "h": 64},
"data": "minelittlepony:components/tail_segment"
},
"segment_1": {
@ -171,6 +173,7 @@
"name": "segment_1",
"implementation": "com.minelittlepony.client.model.part.PonyTail$Segment",
"locals": { "segment_index": 1 },
"texture": {"w": 128, "h": 64},
"data": "minelittlepony:components/tail_segment"
},
"segment_2": {
@ -178,6 +181,7 @@
"name": "segment_2",
"implementation": "com.minelittlepony.client.model.part.PonyTail$Segment",
"locals": { "segment_index": 2 },
"texture": {"w": 128, "h": 64},
"data": "minelittlepony:components/tail_segment"
},
"segment_3": {
@ -185,6 +189,7 @@
"name": "segment_3",
"implementation": "com.minelittlepony.client.model.part.PonyTail$Segment",
"locals": { "segment_index": 3 },
"texture": {"w": 128, "h": 64},
"data": "minelittlepony:components/tail_segment"
}
}