chore: removed debug logs from prop

This commit is contained in:
Sara 2023-11-25 11:34:24 +01:00
parent 1bba6c86f1
commit 29b2852cea

View file

@ -39,11 +39,7 @@ void DestroyProp(Prop* self) {
}
void PropStart(Prop* self) {}
void PropUpdate(Prop* self, float deltaTime) {
Vector vel = rigidbody_get_velocity(self->rigidbody);
LOG_INFO("Velocity: %f %f", vel.x, vel.y);
LOG_INFO("Position: %f %f", self->transform.position.x, self->transform.position.y);
}
void PropUpdate(Prop* self, float deltaTime) {}
void PropDraw(Prop* self) {
sprite_draw(self->sprite, self->transform);