aboutsummaryrefslogtreecommitdiffstats
path: root/src/shooterScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shooterScreen.h')
-rw-r--r--src/shooterScreen.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/shooterScreen.h b/src/shooterScreen.h
index 2d9d533..720b961 100644
--- a/src/shooterScreen.h
+++ b/src/shooterScreen.h
@@ -13,8 +13,11 @@
#define MOUSE_SPEED 0.01
-#define SHOOTER_PENGUIN_COUNT 5
+#define SHOOTER_PENGUIN_COUNT 10
#define SHOOTER_PENGUIN_HEIGHT 1.0
+#define SHOOTER_PENGUIN_CHANGE_DELAY_MIN 0 // Goes at you at 0
+#define SHOOTER_PENGUIN_CHANGE_DELAY_MAX 7
+#define SHOOTER_PENGUIN_SPEED 8.0
typedef struct ShooterPlayer {
Camera3D camera;
@@ -34,6 +37,9 @@ typedef struct ShooterPenguin {
Vector3 position;
Vector3 velocity;
float sleepyness;
+
+ double changeSpeedDelay;
+ double lastVelocityChange;
} ShooterPenguin;
typedef struct ShooterScreen {