ModelNode constructor

ModelNode({
  1. required String? name,
  2. required int nodeIndex,
  3. required int? parentNodeIndex,
  4. required Matrix4 transform,
  5. required Mesh? mesh,
  6. required Map<int, ModelJoint> joints,
})

Implementation

ModelNode({
  required this.name,
  required this.nodeIndex,
  required this.parentNodeIndex,
  required this.transform,
  required this.mesh,
  required this.joints,
});