public bool wholeNumbers ;

描述

是否应只允许此值为整数值?

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

public class Example : MonoBehaviour { public Slider mainSlider;

public void Start() { //sets the slider's value to accept whole numbers only. mainSlider.wholeNumbers = true; } }