https://docs.wispforest.io/accessories/developer/itemstack_components#rendering
This page describes the following example for a translation vector:
{
{
"type": "translation",
"value": [-25, 0, 5]
}
}
This example is wrong. Since the entire thing is flatmapped, it should actually be the following:
{
{
"type": "translation",
"x": -25,
"y": 0,
"z": 5
}
}
https://docs.wispforest.io/accessories/developer/itemstack_components#rendering
This page describes the following example for a translation vector:
{ { "type": "translation", "value": [-25, 0, 5] } }This example is wrong. Since the entire thing is flatmapped, it should actually be the following:
{ { "type": "translation", "x": -25, "y": 0, "z": 5 } }