Skip to content

Commit 9bf80a8

Browse files
committed
Fix warning in scene example (bevyengine#1441)
I noticed the following error when trying out the `scene` example ```bash Feb 13 22:11:13.997 WARN bevy_asset::asset_server: encountered an error while loading an asset: No registration found for glam::f32::vec3::Vec3 ``` This PR fixes the error and makes the scene file load correctly
1 parent cd688d7 commit 9bf80a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

assets/scenes/load_scene_example.scn.ron

Lines changed: 4 additions & 4 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::f32::vec3::Vec3",
9+
"type": "glam::vec3::Vec3",
1010
"value": (0.0, 0.0, 0.0),
1111
},
1212
"rotation": {
13-
"type": "glam::f32::quat::Quat",
13+
"type": "glam::quat::Quat",
1414
"value": (0.0, 0.0, 0.0, 1.0),
1515
},
1616
"scale": {
17-
"type": "glam::f32::vec3::Vec3",
17+
"type": "glam::vec3::Vec3",
1818
"value": (1.0, 1.0, 1.0),
1919
},
2020
},
@@ -61,4 +61,4 @@
6161
},
6262
],
6363
),
64-
]
64+
]

0 commit comments

Comments
 (0)