The normalized local space X-axis vector of the graph node in world space

Hello, Entity has available bunch of properties for normalized local space vectors such as forward, up, and right. My question is how can calculate normalized local space vector in world space for left side?

Thanks

If I understand the question correctly, you just want to get local left axis?

If so, clone the right vector and multiple it by -1.

const left = this.entity.right.clone().mulScalar(-1);
2 Likes

Thank you, that’s exactly what I needed!