Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetRenderersHiddenResultBits(ReadOnlySpan<int>, Span<ulong>)

Gets the scene visibility status of renderers.
Read time 1 minuteLast updated 12 days ago

Definition

public static void GetRenderersHiddenResultBits(ReadOnlySpan<int> rendererIDs, Span<ulong> resultBits)

Parameters

The span of renderer instance IDs to check.

resultBits

The span of visibility statuses the method returns. If a bit is set to one, the corresponding renderer in the
rendererIDs
parameter is not visible in the scene view. The length of the span must be
(rendererIDs.Length + 63) / 64
. Otherwise an exception will be thrown.

Remarks

Refer to SceneVisibility for more information about scene visibility.