From 5a4a2882c770028aae3fe2aa9af8d4dbaa20fb4f Mon Sep 17 00:00:00 2001 From: Alex Okafor <45021773+AlexOkafor@users.noreply.github.com> Date: Mon, 20 Nov 2023 20:14:50 -0500 Subject: [PATCH] Fix load scene example to use proper serialization format for rotation field (#10638) # Objective Fixes #10479 ## Solution - Updated scene file --- assets/scenes/load_scene_example.scn.ron | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/assets/scenes/load_scene_example.scn.ron b/assets/scenes/load_scene_example.scn.ron index 4c03d1c53c..c1c725c8d2 100644 --- a/assets/scenes/load_scene_example.scn.ron +++ b/assets/scenes/load_scene_example.scn.ron @@ -13,7 +13,12 @@ y: 0.0, z: 0.0 ), - rotation: (0.0, 0.0, 0.0, 1.0), + rotation: ( + x: 0.0, + y: 0.0, + z: 0.0, + w: 1.0, + ), scale: ( x: 1.0, y: 1.0,