Python: get scale vector from transform?

Is there anything that does this easily? The only thing I can find that does any sort of conversion with a transform is transform_to_matrix, and it splits the values onto two different planes, not sure how to parse and combine back into a single vector variable.

Just thinking that there might be a super easy function built in that I’m not finding in the docs?

Thanks in advance :slight_smile:

https://docs.unrealengine.com/5.1/en-US/PythonAPI/class/Transform.html#unreal.Transform.scale3d

Thanks! I got it with

unreal.MathLibrary.matrix_get_scale_vector(transform, tolerance=0.0)