LogoPixi’VN
pixi-jsType aliases

Type Alias: TEXTURE\_DIMENSIONS

> TEXTURE_DIMENSIONS = "1d" | "2d" | "3d"

Defined in: node_modules/pixi.js/lib/rendering/renderers/shared/texture/const.d.ts:29

The texture dimensions that are supported by pixi.

  • 1d is a one-dimensional texture, which is typically used for linear data.
  • 2d is a two-dimensional texture, which is commonly used for images and textures.
  • 3d is a three-dimensional texture, which is used for volumetric data or 3D textures.

Advanced