Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

GUI.HorizontalSlider

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function HorizontalSlider(position: Rect, value: float, leftValue: float, rightValue: float): float;
public static float HorizontalSlider(Rect position, float value, float leftValue, float rightValue);
public static function HorizontalSlider(position: Rect, value: float, leftValue: float, rightValue: float, slider: GUIStyle, thumb: GUIStyle): float;
public static float HorizontalSlider(Rect position, float value, float leftValue, float rightValue, GUIStyle slider, GUIStyle thumb);

Parámetros

position Rectangle on the screen to use for the slider.
value The value the slider shows. This determines the position of the draggable thumb.
leftValue The value at the left end of the slider.
rightValue The value at the right end of the slider.
slider The GUIStyle to use for displaying the dragging area. If left out, the horizontalSlider style from the current GUISkin is used.
thumb The GUIStyle to use for displaying draggable thumb. If left out, the horizontalSliderThumb style from the current GUISkin is used.

Valor de retorno

float The value that has been set by the user.

Descripción

A horizontal slider the user can drag to change a value between a min and a max.

	// Draws a horizontal slider control that goes from 0 to 10.
	var hSliderValue : float = 0.0;
	
	function OnGUI () {
		hSliderValue = GUI.HorizontalSlider (Rect (25, 25, 100, 30), hSliderValue, 0.0, 10.0);
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float hSliderValue = 0.0F; void OnGUI() { hSliderValue = GUI.HorizontalSlider(new Rect(25, 25, 100, 30), hSliderValue, 0.0F, 10.0F); } }