transform property

Matrix4 transform

Determines the receiver's transform. The transform is the combination of the position, rotation and scale defined below. So when the transform is set, the receiver's position, rotation and scale are changed to match the new transform.

Implementation

Matrix4 get transform => transformNotifier.value;
void transform=(Matrix4 matrix)

Implementation

set transform(Matrix4 matrix) {
  transformNotifier.value = matrix;
}