From 9a9e57dbd29216c2d12931d3db209d69882d4ce5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Fri, 2 Jun 2023 17:26:41 +0300 Subject: [PATCH] Increase trail length --- bundle/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundle/main.lua b/bundle/main.lua index 3d2376b..e84ca12 100644 --- a/bundle/main.lua +++ b/bundle/main.lua @@ -7,7 +7,7 @@ local wall_thickness = 0.01 local missiles = {} local missile_radius = 0.005 -local missile_trail_length = 7 +local missile_trail_length = 15 local cities = {} local city_radius = 0.05 @@ -57,7 +57,7 @@ function love.load() spawnCities() spawnMissile(0.5, 0.1, cities[3].x, cities[3].y, 0.2) spawnMissile(0.1, 0.3, cities[7].x, cities[7].y, 0.2) - spawnMissile(0.1, 0.3, cities[3].x, cities[3].y, 0.1) + spawnMissile(0.1, 0.3, cities[3].x, cities[3].y, 0.2) end function spawnCities()