Class ClimbProvider
Locomotion provider that allows the user to climb a Climb
Implements
Inherited Members
Namespace: UnityEngine .XR.Interaction.Toolkit.Locomotion.Climbing
Assembly: Unity.XR.Interaction.Toolkit.dll
Syntax
[AddComponentMenu("XR/Locomotion/Climb Provider", 11)]
[HelpURL("https://docs.unity3d.com/Packages/com.unity.xr.interaction.toolkit@3.1/api/UnityEngine.XR.Interaction.Toolkit.Locomotion.Climbing.ClimbProvider.html")]
[MovedFrom("UnityEngine.XR.Interaction.Toolkit")]
public class ClimbProvider : LocomotionProvider, IGravityController
Properties
canProcess
Whether the gravity can be processed.
Gravity controllers that can process receive queries to gravity
Declaration
public bool canProcess { get; }
Property Value
Type | Description |
---|---|
bool |
Remarks
It's recommended to return is
See Also
climbAnchorInteractable
The interactable that is currently grabbed and driving movement. This will be null if there is no active climb.
Declaration
public ClimbInteractable climbAnchorInteractable { get; }
Property Value
Type | Description |
---|---|
Climb |
See Also
climbAnchorInteractor
The interactor that is currently grabbing and driving movement. This will be null if there is no active climb.
Declaration
public IXRSelectInteractor climbAnchorInteractor { get; }
Property Value
Type | Description |
---|---|
IXRSelect |
See Also
climbSettings
Climb locomotion settings. Can be overridden by the Climb
Declaration
public ClimbSettingsDatumProperty climbSettings { get; set; }
Property Value
Type | Description |
---|---|
Climb |
See Also
enableGravityOnClimbEnd
Whether to allow falling when climb locomotion ends. Disable to pause gravity when releasing, keeping the user from falling.
Declaration
public bool enableGravityOnClimbEnd { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
gravityPaused
Whether gravity is paused.
Declaration
public bool gravityPaused { get; protected set; }
Property Value
Type | Description |
---|---|
bool |
See Also
providersToDisable
List of providers to disable while climb locomotion is active. If empty, no providers will be disabled by this component while climbing.
Declaration
public List<LocomotionProvider> providersToDisable { get; set; }
Property Value
Type | Description |
---|---|
List<Locomotion |
See Also
transformation
The transformation that is used by this component to apply climb movement.
Declaration
public XROriginMovement transformation { get; set; }
Property Value
Type | Description |
---|---|
XROrigin |
See Also
Methods
Awake()
See Mono
Declaration
protected override void Awake()
Overrides
See Also
FinishClimbGrab(IXRSelectInteractor)
Finishes the grab driven by interactor
. If this was the most recent grab then movement
will now be driven by the next most recent grab.
Declaration
public void FinishClimbGrab(IXRSelectInteractor interactor)
Parameters
Type | Name | Description |
---|---|---|
IXRSelect |
interactor | The interactor whose grab to finish. |
Remarks
If there is no other active grab to fall back on, this will put the locomotion
See Also
OnGravityLockChanged(GravityOverride)
Called from Try
Declaration
protected virtual void OnGravityLockChanged(GravityOverride gravityOverride)
Parameters
Type | Name | Description |
---|---|---|
Gravity |
gravityOverride | The Gravity |
See Also
OnGroundedChanged(bool)
Called from Gravity
Declaration
protected virtual void OnGroundedChanged(bool isGrounded)
Parameters
Type | Name | Description |
---|---|---|
bool | isGrounded | Whether the player is on the ground. |
Remarks
This is used to prevent players teleporting to the ground while climbing resulting in gravity failing to unpause.
See Also
RemoveGravityLock()
Removes this provider from the Gravity
Declaration
public void RemoveGravityLock()
See Also
StartClimbGrab(ClimbInteractable, IXRSelectInteractor)
Starts a grab as part of climbing climbInteractable
, using the position of
interactor
to drive movement.
Declaration
public void StartClimbGrab(ClimbInteractable climbInteractable, IXRSelectInteractor interactor)
Parameters
Type | Name | Description |
---|---|---|
Climb |
climbInteractable | The object to climb. |
IXRSelect |
interactor | The interactor that initiates the grab and drives movement. |
Remarks
This puts the locomotion
See Also
TryLockGravity(GravityOverride)
Attempts to lock gravity.
Declaration
public bool TryLockGravity(GravityOverride gravityOverride)
Parameters
Type | Name | Description |
---|---|---|
Gravity |
gravityOverride | The Gravity |
Returns
Type | Description |
---|---|
bool | Whether the gravity was successfully locked. |
See Also
Update()
See Mono
Declaration
protected virtual void Update()
See Also
Events
climbAnchorUpdated
Calls the methods in its invocation list when the provider updates climb
Declaration
public event Action<ClimbProvider> climbAnchorUpdated
Event Type
Type | Description |
---|---|
Action<Climb |