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,
})

Implementation

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