From 04538fd802e99080210a587e9a4805d098eb2d75 Mon Sep 17 00:00:00 2001 From: Tomasz Galkowski Date: Sat, 20 Aug 2022 19:55:53 +0000 Subject: [PATCH] fixes the types for Vec3 and Quat in scene example to remove WARN from the logs (#5751) # Objective - Fixes #5745. ## Solution - Changes the Vec3 and Quat types. --- assets/scenes/load_scene_example.scn.ron | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/scenes/load_scene_example.scn.ron b/assets/scenes/load_scene_example.scn.ron index 1f9de9dae7da8..981c85d724d5e 100644 --- a/assets/scenes/load_scene_example.scn.ron +++ b/assets/scenes/load_scene_example.scn.ron @@ -6,15 +6,15 @@ "type": "bevy_transform::components::transform::Transform", "struct": { "translation": { - "type": "glam::vec3::Vec3", + "type": "glam::f32::vec3::Vec3", "value": (0.0, 0.0, 0.0), }, "rotation": { - "type": "glam::quat::Quat", + "type": "glam::f32::scalar::quat::Quat", "value": (0.0, 0.0, 0.0, 1.0), }, "scale": { - "type": "glam::vec3::Vec3", + "type": "glam::f32::vec3::Vec3", "value": (1.0, 1.0, 1.0), }, },