Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetActiveOptions(Span<int>)

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

Definition

public Span<int> GetActiveOptions(Span<int> activeOptionsIndices)

Parameters

activeOptionsIndices

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

Returns

Type

Description

Span<int>

Examples

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