NodeT constructor

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

Implementation

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