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 (bevyengine#10638)

# Objective

Fixes bevyengine#10479

## Solution

- Updated scene file
  • Loading branch information
AlexOkafor authored and Ray Redondo committed Jan 9, 2024
1 parent bf89329 commit b3b99cd
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 b3b99cd

Please sign in to comment.