Skip to content

Commit a2f5bad

Browse files
tkgalkItsDoot
authored andcommitted
fixes the types for Vec3 and Quat in scene example to remove WARN from the logs (bevyengine#5751)
# Objective - Fixes bevyengine#5745. ## Solution - Changes the Vec3 and Quat types.
1 parent 5d46014 commit a2f5bad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

assets/scenes/load_scene_example.scn.ron

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
"type": "bevy_transform::components::transform::Transform",
77
"struct": {
88
"translation": {
9-
"type": "glam::vec3::Vec3",
9+
"type": "glam::f32::vec3::Vec3",
1010
"value": (0.0, 0.0, 0.0),
1111
},
1212
"rotation": {
13-
"type": "glam::quat::Quat",
13+
"type": "glam::f32::scalar::quat::Quat",
1414
"value": (0.0, 0.0, 0.0, 1.0),
1515
},
1616
"scale": {
17-
"type": "glam::vec3::Vec3",
17+
"type": "glam::f32::vec3::Vec3",
1818
"value": (1.0, 1.0, 1.0),
1919
},
2020
},

0 commit comments

Comments
 (0)