Skip to content

RangeSlider

Extends: HBoxContainer

Description

Dungeondraft unique UI Control that is allows the user to use a slider to set a minimum and a maximum.

Properties

Range MinRange
Range MaxRange
SpinBox minSpinBox
SpinBox maxSpinBox
Slider minSlider
Slider maxSlider

Methods

void Init ( float min, float max, float step, float minValue, float maxValue )

Property Descriptions

  • Range MinRange:
    Safe to access the min value set by the user.

  • Range MaxRange:
    Safe to access the max value set by the user.

  • SpinBox minSpinBox:
    The SpinBox to set the minimum. Linked to the minSlider.

  • SpinBox maxSpinBox:
    The SpinBox to set the maximum. Linked to the maxSlider.

  • Slider minSlider:
    The Slider to set the minimum. Linked to the minSpinBox.

  • Slider maxSlider:
    The Slider to set the maximum. Linked to the maxSpinBox.

Method Descriptions