namespace VRTK.Prefabs.Interactions.Interactables.Climb { using UnityEngine; using Malimbe.XmlDocumentationAttribute; using Malimbe.PropertySerializationAttribute; using VRTK.Prefabs.Locomotion.Movement.Climb; /// /// The public interface for the Interactable.Climbable prefab. /// public class ClimbInteractableFacade : MonoBehaviour { #region Climb Settings /// /// The to use. /// [Serialized] [field: Header("Climb Settings"), DocumentedByXml] public ClimbFacade ClimbFacade { get; set; } /// /// The multiplier to apply to the velocity of the interactor when the interactable is released and climbing stops. /// [Serialized] [field: DocumentedByXml] public Vector3 ReleaseMultiplier { get; set; } = Vector3.one; #endregion } }