mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
Fix warning in scene example (#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
This commit is contained in:
parent
cd688d7a41
commit
9bf80a8566
1 changed files with 4 additions and 4 deletions
|
@ -6,15 +6,15 @@
|
|||
"type": "bevy_transform::components::transform::Transform",
|
||||
"struct": {
|
||||
"translation": {
|
||||
"type": "glam::f32::vec3::Vec3",
|
||||
"type": "glam::vec3::Vec3",
|
||||
"value": (0.0, 0.0, 0.0),
|
||||
},
|
||||
"rotation": {
|
||||
"type": "glam::f32::quat::Quat",
|
||||
"type": "glam::quat::Quat",
|
||||
"value": (0.0, 0.0, 0.0, 1.0),
|
||||
},
|
||||
"scale": {
|
||||
"type": "glam::f32::vec3::Vec3",
|
||||
"type": "glam::vec3::Vec3",
|
||||
"value": (1.0, 1.0, 1.0),
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue