MorphTarget constructor

MorphTarget(
  1. Map<String, dynamic>? json
)

Implementation

MorphTarget(Map<String, dynamic>? json) {
  if (json != null) {
    if (json["name"] != null) name = json["name"];
    if (json["vertices"] != null) vertices = json["vertices"];
    if (json["normals"] != null) normals = json["normals"];
  }
}