Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetInactiveOptions(Span<int>)

Retrieves a Span of integers containing the inactive options as indices.
Read time 1 minuteLast updated 12 days ago

Definition

public Span<int> GetInactiveOptions(Span<int> inactiveOptionsIndices)

Parameters

inactiveOptionsIndices

A Span of type integers with the allocated size to hold the number of inactive indices.

Returns

Type

Description

Span<int>

Examples

public void HandleInactiveOptions(){ var value = myToggleButtonGroup.value; var options = value.GetInactiveOptions(stackalloc int[value.length]); foreach (option in options) { // handle option }}