loadBuffer method

dynamic loadBuffer(
  1. dynamic bufferIndex
)

Implementation

loadBuffer(bufferIndex) async {
  Map<String, dynamic> bufferDef = this.json["buffers"][bufferIndex];
  var loader = this.fileLoader;

  if (bufferDef["type"] != null && bufferDef["type"] != 'arraybuffer') {
    throw ('THREE.GLTFLoader: ${bufferDef["type"]} buffer type is not supported.');
  }

  // If present, GLB container is required to be the first buffer.
  if (bufferDef["uri"] == null && bufferIndex == 0) {
    return this.extensions[EXTENSIONS["KHR_BINARY_GLTF"]].body;
  }

  var options = this.options;

  var _url = LoaderUtils.resolveURL(bufferDef["uri"], options["path"]);

  final res = await loader.loadAsync(_url);

  return res;
}