Copyright © 2021 by K4.org
  (v.0.48.124)

A texture is a bitmap image that can be used to apply colors and other attributes to objects.

Index

Rules

imageUrl

imageUrl: String

The URL describing the loadable texture file.

Flags : Cached, Parameter (Note this is uncached)

Expression : "https://threejs.org/examples/textures/"

options

options: Any

Additional texture options that can be supplied to THREE.Texture.

Flags : Cached, Parameter (Note this is uncached)

Expression : {}

spec

spec: Any

Internal Use Only.

Flags : Cached (Note this is uncached)

Expression : Object.assign({}, this.options)

textureHandle

textureHandle: String

The handle to the texture.

Flags : Cached, External, Update (Note this is uncached)

Expression : R.THREE.makeTexture(this.textureName, this.imageUrl, this.spec)

textureID

textureID: String

The name of this texture. This forces the texture to be inserted into the texture table.

Flags : Cached (Note this is uncached)

Expression : this.textureHandle; return this.textureName;

textureName

textureName: String

The name of the texture. This is used to lookup the texture in the texture table so it is only loaded once.

Flags : Cached, Required, Parameter (Note this is uncached)

Expression : ``