From 65becad72d27e0166c223d3e20b39b48b787d421 Mon Sep 17 00:00:00 2001 From: benjamaan476 Date: Thu, 16 Jan 2025 16:58:30 +0000 Subject: [PATCH] Change f32 to f64 for Transforms --- modeling-cmds/src/shared.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modeling-cmds/src/shared.rs b/modeling-cmds/src/shared.rs index 49ebbb9b..bdf0fced 100644 --- a/modeling-cmds/src/shared.rs +++ b/modeling-cmds/src/shared.rs @@ -1009,11 +1009,11 @@ pub struct ComponentTransform { pub translate: Option>>, /// Rotate component of the transform. /// The rotation is specified as a roll, pitch, yaw. - pub rotate_rpy: Option>>, + pub rotate_rpy: Option>>, /// Rotate component of the transform. /// The rotation is specified as an axis and an angle (xyz are the components of the axis, w is /// the angle in degrees). - pub rotate_angle_axis: Option>, + pub rotate_angle_axis: Option>>, /// Scale component of the transform. - pub scale: Option>>, + pub scale: Option>>, }