Upravit

Sdílet prostřednictvím


StepSlider Class

Definition

A slider with a fixed number of step values that can be moved by grabbing / pinching a slider thumb Number of steps defaults to 0, if number isn't set then slider behaves just like a regular PinchSlider

public ref class StepSlider : Microsoft::MixedReality::Toolkit::UI::PinchSlider, Microsoft::MixedReality::Toolkit::Input::IMixedRealityPointerHandler, UnityEngine::EventSystems::IEventSystemHandler
[UnityEngine.AddComponentMenu("MRTK/SDK/Experimental/StepSlider")]
public class StepSlider : Microsoft.MixedReality.Toolkit.UI.PinchSlider, Microsoft.MixedReality.Toolkit.Input.IMixedRealityPointerHandler, UnityEngine.EventSystems.IEventSystemHandler
[<UnityEngine.AddComponentMenu("MRTK/SDK/Experimental/StepSlider")>]
type StepSlider = class
    inherit PinchSlider
    interface IMixedRealityPointerHandler
    interface IEventSystemHandler
Public Class StepSlider
Inherits PinchSlider
Implements IEventSystemHandler, IMixedRealityPointerHandler
Inheritance
UnityEngine.MonoBehaviour
StepSlider
Attributes
UnityEngine.AddComponentMenuAttribute
Implements
IMixedRealityPointerHandler UnityEngine.EventSystems.IEventSystemHandler

Constructors

StepSlider()

Fields

OnHoverEntered (Inherited from PinchSlider)
OnHoverExited (Inherited from PinchSlider)
OnInteractionEnded (Inherited from PinchSlider)
OnInteractionStarted (Inherited from PinchSlider)
OnValueUpdated (Inherited from PinchSlider)

Properties

ActivePointer

Interface for handling pointer being used in UX interaction.

(Inherited from PinchSlider)
CurrentSliderAxis

Property accessor of sliderAxis. The axis the slider moves along.

(Inherited from PinchSlider)
SliderEndDistance (Inherited from PinchSlider)
SliderEndPosition

Gets the end position of the slider, in world space, or zero if invalid. Sets the end position of the slider, in world space, projected to the slider's axis.

(Inherited from PinchSlider)
SliderStartDistance (Inherited from PinchSlider)
SliderStartPosition

Gets the start position of the slider, in world space, or zero if invalid. Sets the start position of the slider, in world space, projected to the slider's axis.

(Inherited from PinchSlider)
SliderStepDivisions

Property accessor of sliderStepDivisions, it holds the number of subdivisions the slider is split into.

SliderTrackDirection

Returns the vector from the slider start to end positions

(Inherited from PinchSlider)
SliderValue (Inherited from PinchSlider)
StartPointerPosition

Starting position of mixed reality pointer in world space Used to track pointer movement

(Inherited from PinchSlider)
StartSliderValue

Float value that holds the starting value of the slider.

(Inherited from PinchSlider)
ThumbRoot (Inherited from PinchSlider)
ThumbVisuals

Property accessor of thumbVisuals, it contains the desired tick marks. This will get rotated to match the slider axis.

(Inherited from PinchSlider)
TickMarks

Property accessor of tickMarks, it contains the desired tick Marks. This will get rotated to match the slider axis.

(Inherited from PinchSlider)
TrackVisuals

Property accessor of trackVisuals, it contains the desired track Visuals. This will get rotated to match the slider axis.

(Inherited from PinchSlider)

Methods

OnFocusEnter(FocusEventData) (Inherited from PinchSlider)
OnFocusExit(FocusEventData) (Inherited from PinchSlider)
OnPointerClicked(MixedRealityPointerEventData) (Inherited from PinchSlider)
OnPointerDown(MixedRealityPointerEventData) (Inherited from PinchSlider)
OnPointerDragged(MixedRealityPointerEventData)

Called every frame a pointer is down. Can be used to implement drag-like behaviors. Uses member sliderStepVal to move up and down the steps on the slider.

OnPointerUp(MixedRealityPointerEventData) (Inherited from PinchSlider)
Start()

Applies to