Tuning up values and the JUMP

This commit is contained in:
AnonymusRaccoon
2020-01-06 18:27:50 +01:00
parent 2c6a60f7c1
commit b2b6b94b3e
10 changed files with 25 additions and 25 deletions
-1
View File
@@ -13,7 +13,6 @@ struct gravity_component
{
gc_component base;
int gravity_speed;
int max_speed;
};
extern const struct gravity_component gravity_component;
+2
View File
@@ -16,6 +16,8 @@ struct jump_action
int acceleration;
int counterforce;
bool contered;
int step;
int step_count;
};
extern const struct jump_action jump_action;
-2
View File
@@ -14,8 +14,6 @@ struct walk_action
{
gc_component base;
int acceleration;
int max_acceleration;
int decceleration;
};
extern const struct walk_action walk_action;