diff options
Diffstat (limited to 'src/entities')
-rw-r--r-- | src/entities/antifaShip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/antifaShip.c b/src/entities/antifaShip.c index 5383537..2b98721 100644 --- a/src/entities/antifaShip.c +++ b/src/entities/antifaShip.c @@ -112,7 +112,7 @@ void updateAntifaShipTarget(Game * game, Entity * entity) { // Update target. float speed = ANTIFA_TARGETING_SPEED / aimDistance; data->gunTarget = Vector3Lerp(data->gunTarget, directionToTarget, speed * t); - printf("%f\n", speed); + //printf("%f\n", speed); // Is on target. data->isOnTarget = traceRayToEntity(*targetEntity, (Ray){entity->position, data->gunTarget}).hit; |