parse method

dynamic parse()

Implementation

parse() async {
  connections = this.parseConnections();
  var images = this.parseImages();

  var textures = await this.parseTextures(images);
  var materials = this.parseMaterials(textures);
  var deformers = this.parseDeformers();
  var geometryMap = GeometryParser().parse(deformers);

  this.parseScene(deformers, geometryMap, materials);

  return sceneGraph;
}