getWorldScale method

Vector3 getWorldScale(
  1. Vector3 target
)

Implementation

Vector3 getWorldScale(Vector3 target) {
  updateWorldMatrix(true, false);

  matrixWorld.decompose(_position, _quaternion, target);

  return target;
}