feat: implemented run animation for revolver

This commit is contained in:
Sara 2025-08-05 13:38:14 +02:00
parent 66aede32bd
commit 2d720a983a
7 changed files with 109 additions and 23 deletions

View file

@ -107,7 +107,7 @@ bool PlayerBody::get_is_running() const {
}
bool PlayerBody::get_wants_to_run() const {
return this->try_running && this->movement_input.y > 0.f && this->is_on_floor();
return this->try_running && this->movement_input.y > 0.f;
}
HealthStatus *PlayerBody::get_health() const {