position property

NotifyingVector3 get position

The translation part of the transform. This translation is applied relative to the global coordinate space.

The returned vector can be modified by the user, and the changes will be propagated back to the transform matrix.

Implementation

NotifyingVector3 get position => _position;
set position (Vector3 position)

Implementation

set position(Vector3 position) => _position.setFrom(position);