X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player_walk.h;h=3e450bcc26f541182bdb613987f0d242e109caf7;hb=ca35eceae3abfcfb9ba266d6ea8e664bc06b0a3e;hp=42cd760d67825f71f5fd38afc2a8e24716600a79;hpb=edd08a99f72cced7626654b04591d5a54a8b540b;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player_walk.h b/player_walk.h index 42cd760..3e450bc 100644 --- a/player_walk.h +++ b/player_walk.h @@ -4,6 +4,8 @@ #include "player_api.h" #include "rigidbody.h" +#define PLAYER_JUMP_EPSILON 0.1 /* 100ms jump allowance */ + struct player_walk{ rb_capsule collider; @@ -35,6 +37,9 @@ struct player_walk{ struct skeleton_anim *outro_anim; double outro_start_time; + + int jump_queued; + f64 jump_input_time; } state, state_gate_storage;