Version: 2019.1

GUI.SelectionGrid

Switch to Manual
public static int SelectionGrid (Rect position, int selected, string[] texts, int xCount);
public static int SelectionGrid (Rect position, int selected, Texture[] images, int xCount);
public static int SelectionGrid (Rect position, int selected, GUIContent[] content, int xCount);
public static int SelectionGrid (Rect position, int selected, string[] texts, int xCount, GUIStyle style);
public static int SelectionGrid (Rect position, int selected, Texture[] images, int xCount, GUIStyle style);
public static int SelectionGrid (Rect position, int selected, GUIContent[] contents, int xCount, GUIStyle style);

Parameters

position@param position Прямоугольник на экране для использования сетки.
selected@return Индекс выделенной кнопки.
texts@param texts Массив строк для отображения на кнопках сетки.
images@param images Массив текстур на кнопках сетки.
contents@param contents Массив текста, изображений и подсказок для кнопки сетки.
xCount@param xCount Сколько элементов в горизонтальном направлении. Они будут масштабироваться до величины fixedWidth, определенной в стиле.
style@param style Используемый стиль. Если не задан, то используется стиль из GUISkin.

Returns

int @return Индекс выделенной кнопки.

Description

Создать сетку(grid) из кнопок.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public int selGridInt = 0; public string[] selStrings = new string[] {"Grid 1", "Grid 2", "Grid 3", "Grid 4"};

void OnGUI() { // use 2 elements in the horizontal direction selGridInt = GUI.SelectionGrid(new Rect(25, 25, 100, 30), selGridInt, selStrings, 2); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961