chore: removed tabs from whitespace-only lines

This commit is contained in:
Sara 2023-11-26 13:32:13 +01:00
parent b1a4fa2f0a
commit ece2a24a78
3 changed files with 20 additions and 20 deletions

View file

@ -24,7 +24,6 @@ const State* PlayerIdleUpdate(Player* self, float deltaTime) {
return PlayerWalk();
if(self->attackInput)
return PlayerJabA();
return PlayerIdle();
}
@ -55,8 +54,9 @@ void PlayerJabA_Enter(Player* self) {
self->currentAnimation = self->jab_a;
animation_sprite_play_from(self->currentAnimation, 0.f);
Collider* found = physics_world_box_query(vaddf(self->transform.position, MakeVector(self->facing * (0.2f + 0.05f), 0.f)),
MakeVector(0.05f, 0.06f), PHYSICS_LAYER_DEFAULT, self->rigidbody);
Collider* found = physics_world_box_query(vaddf(self->transform.position, MakeVector(self->facing * (0.2f + 0.1f), 0.f)),
MakeVector(0.1f, 0.06f), PHYSICS_LAYER_DEFAULT, self->rigidbody);
if(found != NULL)
LOG_INFO("Query returned %p", found);
}