Hello, Im trying see the vertices of my bounding box
My .json
"location": {
"location": {
"type": "boundingbox",
"vertices": [ -80.32742, 1.9185565, 62.232525, 4.2945437, 64.60857, 317.92657, -77.95145, 320.3026 ]
}
},
My javascript
console.log(this.skeleton.getAttachmentBySlotName('location', 'location'));
getAttachmentBySlotName return the object correctly🙁Chrome console)
spine.BoundingBoxAttachment {name: "location", vertices: Array[0], type: undefined, computeWorldVertices: function}
but the vertices array is empty '[]'
How do i see a boundingbox vertices ?
thanks