GltfPbrMetallicRoughness constructor

GltfPbrMetallicRoughness({
  1. List<double> baseColorFactor = const [1.0, 1.0, 1.0, 1.0],
  2. GltfTextureInfo? baseColorTexture,
  3. double metallicFactor = 1.0,
  4. double roughnessFactor = 1.0,
  5. GltfTextureInfo? metallicRoughnessTexture,
})

Implementation

GltfPbrMetallicRoughness({
  this.baseColorFactor = const [1.0, 1.0, 1.0, 1.0],
  this.baseColorTexture,
  this.metallicFactor = 1.0,
  this.roughnessFactor = 1.0,
  this.metallicRoughnessTexture,
});