A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.unity3d.com/Manual/sprite/../../ScriptReference/GUI.VerticalSlider.html below:

Unity - Scripting API: GUI.VerticalSlider

GUI.VerticalSlider Suggest a change Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close Your name Your email Suggestion*

Cancel

Declaration

public static float

VerticalSlider

(

Rect position

, float

value

, float

topValue

, float

bottomValue

);

Declaration

public static float

VerticalSlider

(

Rect position

, float

value

, float

topValue

, float

bottomValue

,

GUIStyle slider

,

GUIStyle thumb

);

Parameters Parameter Description position Rectangle on the screen to use for the slider. value The value the slider shows. This determines the position of the draggable thumb. topValue The value at the top end of the slider. bottomValue The value at the bottom 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. Returns

float The value that has been set by the user.

Description

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

// Draws a vertical slider control that goes from  10 (top) to 0 (bottom)

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { public float vSliderValue = 0.0f;

void OnGUI() { vSliderValue = GUI.VerticalSlider(new Rect(25, 25, 100, 30), vSliderValue, 10.0f, 0.0f); } }


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4