Version: 2019.2
public float normalizedValue ;

説明

値を 0 と 1 の間に正規化されたスライダーの現在の値。

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.

public class Example : MonoBehaviour { public Slider mainSlider;

//Set to invoke when "OnValueChanged" method is called. void CheckNormalisedValue() { //Displays the normalised value of the slider everytime the value changes. Debug.Log(mainSlider.normalizedValue); } }