mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
Fix load scene example to use proper serialization format for rotation field (#10638)
# Objective Fixes #10479 ## Solution - Updated scene file
This commit is contained in:
parent
57a175f546
commit
5a4a2882c7
1 changed files with 6 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue