Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

SparseTexture.UnloadTile

UnloadTile(tileX: int, tileY: int, miplevel: int): void;
void UnloadTile(int tileX, int tileY, int miplevel);
def UnloadTile(tileX as int, tileY as int, miplevel as int) as void

Parameters

tileXTile X coordinate.
tileYTile Y coordinate.
miplevelMipmap level of the texture.

Description

Unload sparse texture tile.

This function removes a tile at (tileX,tileY) coordinates from memory. If a tile is not present, then this function does nothing.

See Also: UpdateTile.