Skip to content

Commit

Permalink
Fix load scene example to use proper serialization format for rotatio…
Browse files Browse the repository at this point in the history
…n field (#10638)

# Objective

Fixes #10479

## Solution

- Updated scene file
  • Loading branch information
AlexOkafor authored Nov 21, 2023
1 parent 57a175f commit 5a4a288
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion assets/scenes/load_scene_example.scn.ron
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5a4a288

Please sign in to comment.