From f45d32ca36a0ae85410b3eee61120fa97bf9bd25 Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Sat, 4 Nov 2023 21:25:01 -0600 Subject: Game play feeling great --- src/entities/antifaShip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/entities/antifaShip.c') 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; -- cgit v1.2.3