chore: removed debug logs from prop
This commit is contained in:
parent
1bba6c86f1
commit
29b2852cea
|
@ -39,11 +39,7 @@ void DestroyProp(Prop* self) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void PropStart(Prop* self) {}
|
void PropStart(Prop* self) {}
|
||||||
void PropUpdate(Prop* self, float deltaTime) {
|
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 PropDraw(Prop* self) {
|
void PropDraw(Prop* self) {
|
||||||
sprite_draw(self->sprite, self->transform);
|
sprite_draw(self->sprite, self->transform);
|
||||||
|
|
Loading…
Reference in a new issue