NodeT constructor

NodeT({
  1. String? name,
  2. List<int>? children,
  3. MatrixT? transform,
  4. List<MeshPrimitiveT>? meshPrimitives,
  5. SkinT? skin,
  6. Aabb3T? combinedLocalAabb,
})

Implementation

NodeT({
  this.name,
  this.children,
  this.transform,
  this.meshPrimitives,
  this.skin,
  this.combinedLocalAabb,
});