04-17-2025 08:17 PM
Title says it all--can I disable jumping, in both VR and mobile? I figure in mobile there's a way to remove the jump button?
04-18-2025 06:28 AM
Try setting the players jumpSpeed to 0.
04-20-2025 12:33 AM
Is there a way to remove the jump button on mobile?
04-20-2025 01:22 AM
// This script Execution Mode must be set to Local.
import * as hz from 'horizon/core';
class DisableControls extends hz.Component {
static propsDefinition = {};
// Automatically called when the world starts.
start() {
// Disables the onscreen buttons for the mobile player who is set to the owner of the object this script is attached to.
PlayerControls.disableSystemControls();
}
}
04-20-2025 01:52 AM
So if disable system controls, I can still add my own custom buttons? I want to have one button on the interface but not to jump.
04-20-2025 05:03 AM
Yes you can add your own buttons.