53 lines
1.4 KiB
GDScript
53 lines
1.4 KiB
GDScript
@tool
|
|
class_name XRToolsMovementJump
|
|
extends XRToolsMovementProvider
|
|
|
|
|
|
## XR Tools Movement Provider for Jumping
|
|
##
|
|
## This script provides jumping mechanics for the player. This script works
|
|
## with the [XRToolsPlayerBody] attached to the players [XROrigin3D].
|
|
##
|
|
## The player enables jumping by attaching an [XRToolsMovementJump] as a
|
|
## child of the appropriate [XRController3D], then configuring the jump button
|
|
## and jump velocity.
|
|
|
|
|
|
## Movement provider order
|
|
@export var order : int = 20
|
|
|
|
## Button to trigger jump
|
|
@export var jump_button_action : String = "trigger_click"
|
|
|
|
|
|
# Node references
|
|
@onready var _controller := XRHelpers.get_xr_controller(self)
|
|
|
|
|
|
# Add support for is_xr_class on XRTools classes
|
|
func is_xr_class(name : String) -> bool:
|
|
return name == "XRToolsMovementJump" or super(name)
|
|
|
|
|
|
# Perform jump movement
|
|
func physics_movement(_delta: float, player_body: XRToolsPlayerBody, _disabled: bool):
|
|
# Skip if the jump controller isn't active
|
|
if !_controller.get_is_active():
|
|
return
|
|
|
|
# Request jump if the button is pressed
|
|
if _controller.is_button_pressed(jump_button_action):
|
|
player_body.request_jump()
|
|
|
|
|
|
# This method verifies the movement provider has a valid configuration.
|
|
func _get_configuration_warnings() -> PackedStringArray:
|
|
var warnings := super()
|
|
|
|
# Check the controller node
|
|
if !XRHelpers.get_xr_controller(self):
|
|
warnings.append("This node must be within a branch of an XRController3D node")
|
|
|
|
# Return warnings
|
|
return warnings
|