What is Incisor?
Tutorials
Key Concepts
Reddit
Stack Overflow
Deprecation Schedule

Texture() extends AssetComponent

A Texture is a pixel map used for filling the surface of Geometry during rendering. [NON-INSTANTIABLE]

new Texture()

MEMBERS

downscalingMode :string

Mode denoting how this Texture will be sampled when it is smaller than it's native size. The various downscaling modes can be found in 'nc.constants.textureDownscalingModes'.

readonly spriteSheet :string

The name of the SpriteSheet that this Texture is a part of (if applicable).

Default Value:
  • undefined

upscalingMode :string

Mode denoting how this Texture will be sampled when it is larger than it's native size. The various upscaling modes can be found in 'nc.constants.textureUpscalingModes'.

wrapModeHorizontal :string

Mode denoting how this Texture will behave beyond its horizontal bounds. The acceptable wrap modes can be found in 'nc.constants.wrapModes'.

wrapModeVertical :string

Mode denoting how this Texture will behave beyond its vertical bounds. The various wrap modes can be found in 'nc.constants.wrapModes'.

Members below are inherited from the parent class.

readonly duplicateSource :string

String indicating the source of this AssetComponent if it is a duplicate. IncisorĀ® automatically detects when two or more AssetComponents are identical, ensuring that only one copy of the associated data is loaded to reduce the loaded size of the project. Those AssetComponents that are duplicates are marked by indicating the name of the source of their data. This member is undefined for AssetComponents that are not duplicates.

Inherited From:

Default Value:
  • undefined

inheritedTypes :object

Dictionary object listing all of the types this object is compatible with.

Inherited From:

readonly isLoaded :boolean

Boolean indicating if this AssetComponent is currently loaded.

Inherited From:

readonly loadingTierRequirements :Array.<number>

The LoadingTier that this AssetComponent belongs too. LoadingTiers are a means to organize AssetComponents into separately downloadable groups.

Inherited From:

readonly name :string

The AssetComponent's name. This must be unique among AssetComponents of its type.

Inherited From:

type :string

Type identifier

Inherited From:

METHODS

getResolution() returns {Vector2}

Returns a Vector2 with the pixel dimensions of this Texture.

Returns:
Vector2