GltfNode constructor

GltfNode({
  1. String? name,
  2. int? mesh,
  3. int? skin,
  4. List<int> children = const [],
  5. Matrix4? matrix,
  6. Vector3? translation,
  7. Quaternion? rotation,
  8. Vector3? scale,
})

Implementation

GltfNode({
  this.name,
  this.mesh,
  this.skin,
  this.children = const [],
  this.matrix,
  this.translation,
  this.rotation,
  this.scale,
});