#How do I make my chair swivel when I'm seated

11 messages · Page 1 of 1 (latest)

supple tree
#

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
}
}
}
}

devout basin
#

@supple tree Try giving the entity "minecraft:input_ground_controlled", and set its movement speed to 0

supple tree
#

k ill try that.

supple tree
#

I tried this with humorous results.

        "minecraft:input_ground_controlled":{},
        "minecraft:walk_animation_speed":{
            "value": 0.0
        },

wasd walks around still and when i get off the swivel chair runs forward for a distance.

#

is swivels but wasd moves too

#

maybe i have the wring speed code not sure been trying to find out

odd palm
#

I think that's what sprinkles meant by movement speed at least

supple tree
#

switched it to walk_speed with same results

#

This seems to work. turns kinda slow though and jerky. not very "with the player" but it works.

        "minecraft:input_ground_controlled":{},
        "minecraft:movement": {
            "value": 0.0
        },
#

thanks guys