morphWeights property

Float32List? get morphWeights

This node's current morph target weights, or null when the mesh has no targets. Returns a copy; drive weights through setMorphWeight or setMorphWeights.

Implementation

Float32List? get morphWeights {
  final live = internalMorphWeights;
  return live == null ? null : Float32List.fromList(live);
}