normalTextureTexCoord property

int get normalTextureTexCoord

Texture-coordinate channel used by normalTexture.

Implementation

int get normalTextureTexCoord => _normalTextureTexCoord;
set normalTextureTexCoord (int value)

Implementation

set normalTextureTexCoord(int value) {
  _normalTextureTexCoord = value.clamp(0, 1);
  _markMaterialDataDirty();
}