Working on lvl0

This commit is contained in:
Evan Pratten 2021-10-03 00:42:55 -04:00
parent 075c0b4886
commit 986fcca851
7 changed files with 34 additions and 45 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,44 +1,27 @@
[ [
{ {
"x": -500, "x": -500,
"y": 1000, "y": 760,
"width": 16000, "width": 16000,
"height": 10 "height": 10
}, },
{ {
"x": 322, "x": 834,
"y": 926, "y": 592
"width": 610, ,
"height": 73 "width": 415,
"height": 54
}, },
{ {
"x": 852, "x": 1385,
"y": 823, "y": 374,
"width": 81, "width": 415,
"height": 178 "height": 54
}, },
{ {
"x": 852, "x": 1808,
"y": 823, "y": 376,
"width": 258, "width": 59,
"height": 33 "height": 379
},
{
"x": 1599,
"y": 699,
"width": 918,
"height": 63
},
{
"x": 2733,
"y": 789,
"width": 108,
"height": 211
},
{
"x": 1110,
"y": 942,
"width": 366,
"height": 57
} }
] ]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 61 KiB

View File

@ -1,28 +1,34 @@
{ {
"appear": [ "appear": [
{ {
"x": 1110, "x": 8130,
"y": 942, "y": 0,
"width": 366, "width": 56,
"height": 57 "height": 442
},
{
"x": 9867,
"y": 698,
"width": 447,
"height": 58
} }
], ],
"disappear": [ "disappear": [
{ {
"x": 792, "x": 2079,
"y": 462, "y": 0,
"width": 54, "width": 61,
"height": 468 "height": 378
}, },
{ {
"x": 2005, "x": 8131,
"y": 641, "y": 440,
"width": 141, "width": 56,
"height": 289 "height": 313
} }
], ],
"win": { "win": {
"x": 3000, "x": 12000,
"y": 0, "y": 0,
"width": 100, "width": 100,
"height": 3000 "height": 3000

View File

@ -72,7 +72,7 @@ impl MainCharacter {
// Handle extra external forces based on the character state // Handle extra external forces based on the character state
self.movement_force = match &state { self.movement_force = match &state {
CharacterState::Running => Vector2::new(10.0, 0.0), CharacterState::Running => Vector2::new(10.0, 0.0),
CharacterState::Jumping => Vector2::new(10.0, -30.0), CharacterState::Jumping => Vector2::new(10.0, -40.0),
CharacterState::Dashing => Vector2::new(30.0, -20.0), CharacterState::Dashing => Vector2::new(30.0, -20.0),
}; };