GltfAccessor constructor

GltfAccessor({
  1. required GltfComponentType componentType,
  2. required int count,
  3. required GltfAccessorType type,
  4. int? bufferView,
  5. int byteOffset = 0,
  6. bool normalized = false,
  7. List<double>? min,
  8. List<double>? max,
})

Implementation

GltfAccessor({
  required this.componentType,
  required this.count,
  required this.type,
  this.bufferView,
  this.byteOffset = 0,
  this.normalized = false,
  this.min,
  this.max,
});