From babd5e5596cefc7b2e15825976e084591f275d6f Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 28 Sep 2017 17:28:59 -0400 Subject: lua - references --- xml/entities.xml | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to 'xml/entities.xml') diff --git a/xml/entities.xml b/xml/entities.xml index aecae45..edee471 100644 --- a/xml/entities.xml +++ b/xml/entities.xml @@ -52,15 +52,14 @@ countdown = 0 - velx = 0 update = function() if (countdown == 0) then - countdown = 5000 + math.random(0, 2000) - velx = (math.random(0, 3) - 1) * 0.004 + countdown = math.random(4000, 6000) + velx = math.random(-1, 1) * 0.004 + vely = .1 end countdown = countdown - 1 - return velx, 0 end @@ -78,7 +77,19 @@ - + + countdown = 0 + velx = 0 + + update = function() + if (countdown == 0) then + countdown = math.random(3000, 5000) + velx = math.random(-1, 1) * 0.005 + end + countdown = countdown - 1 + return velx + end + -- cgit v1.2.3