Skip to content

Commit

Permalink
Fix scene example
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGVSV committed Aug 10, 2022
1 parent 5110f43 commit aa1f1aa
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions assets/scenes/load_scene_example.scn.ron
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,27 @@
entity: 0,
components: [
{
"type": "bevy_transform::components::transform::Transform",
"value": {
"translation": (0.0, 0.0, 0.0),
"bevy_transform::components::transform::Transform": {
"translation": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"rotation": (0.0, 0.0, 0.0, 1.0),
"scale": (1.0, 1.0, 1.0),
"scale": {
"x": 1.0,
"y": 1.0,
"z": 1.0
},
},
},
{
"type": "scene::ComponentB",
"value": {
"scene::ComponentB": {
"value": "hello",
},
},
{
"type": "scene::ComponentA",
"value": {
"scene::ComponentA": {
"x": 1.0,
"y": 2.0,
},
Expand All @@ -29,8 +34,7 @@
entity: 1,
components: [
{
"type": "scene::ComponentA",
"value": {
"scene::ComponentA": {
"x": 3.0,
"y": 4.0,
},
Expand Down

0 comments on commit aa1f1aa

Please sign in to comment.