mirror of
https://github.com/bevyengine/bevy
synced 2024-11-24 21:53:07 +00:00
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.
This commit is contained in:
parent
681c9c6dc8
commit
04538fd802
1 changed files with 3 additions and 3 deletions
|
@ -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),
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue