Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

CullingGroup.QueryIndices

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function QueryIndices(visible: bool, result: int[], firstIndex: int): int;
public int QueryIndices(bool visible, int[] result, int firstIndex);
public function QueryIndices(distanceIndex: int, result: int[], firstIndex: int): int;
public int QueryIndices(int distanceIndex, int[] result, int firstIndex);
public function QueryIndices(visible: bool, distanceIndex: int, result: int[], firstIndex: int): int;
public int QueryIndices(bool visible, int distanceIndex, int[] result, int firstIndex);

Parámetros

visible True if only visible spheres should be retrieved; false if only invisible spheres should be retrieved.
distanceIndex The distance band that retrieved spheres must be in.
result An array that will be filled with the retrieved sphere indices.
firstIndex The index of the sphere to begin searching at.

Valor de retorno

int The number of sphere indices found and written into the result array.

Descripción

Retrieve the indices of spheres that have particular visibility and/or distance states.

Use the overload that corresponds to the state properties you are interested in. For example, if you want to retrieve visible spheres in any distance band, use the overload that takes a 'visible' parameter but does not have a 'distanceIndex' parameter.

The length of the result array is used to limit the number of spheres checked. If you provide a result array of length 20, and a firstIndex of 10, then the query will only examine spheres 10 through 30 to see if they meet the given visibility and/or distance constraints.