I want to make my throne(entity) swivel with the player seated in it. How do I do this? v1.19.41
this is my BP code:
{
"format_version": "1.16.100",
"minecraft:entity": {
"description": {
"identifier": "sw_deco:chair_emperors_throne",
"is_spawnable": true,
"is_summonable": true,
"is_experimental": false
},
"components": {
"minecraft:physics": {
"has_gravity": true,
"has_collision": true
},
"minecraft:rideable": {
"seat_count": 1,
"family_types": ["player"],
"interact_text": "action.interact.enter_boat",
"seats": {
"position": [0, 0.4, 0.1]
}
},
"minecraft:pushable": {
"is_pushable": false
},
"minecraft:push_through": {
"value": 1
}
}
}
}