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.EraseSwapBack

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 EraseSwapBack(index: int): void;
public void EraseSwapBack(int index);

Parámetros

index The index of the entry to erase.

Descripción

Erase a given bounding sphere by moving the final sphere on top of it.

This method also keeps the visibility information correctly synchronized, such that the correct onBecameVisible/onBecameInvisible callbacks will still be sent.


public static function EraseSwapBack(index: int, myArray: T[], ref size: int): void;
public static void EraseSwapBack(int index, T[] myArray, ref int size);

Parámetros

index The index of the entry to erase.
myArray An array of entries.
size The number of entries in the array that are actually used.

Descripción

Erase a given entry in an arbitrary array by copying the final entry on top of it, then decrementing the number of entries used by one.

This method is designed to be used in conjunction with the other overload, for updating your own data arrays when an entry is deleted.