From 629468be9f5fc781445d3163920baf0988b5ea3e Mon Sep 17 00:00:00 2001 From: 1029chris <1029chris@gmail.com> Date: Wed, 27 Apr 2016 14:44:04 -0700 Subject: Made UFO smaller, removed glass --- virus1.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'virus1.lua') diff --git a/virus1.lua b/virus1.lua index 3ad3cfb..097fe5d 100644 --- a/virus1.lua +++ b/virus1.lua @@ -145,8 +145,8 @@ function drawVirusFight1() love.graphics.draw(v1.c.pupil, v1.c.x+7+v1.c.eyex+math.random(0,0.5), v1.c.y-28+v1.c.eyey+math.random(0,0.5), v1.c.r, v1.c.s*1.2, v1.c.s*1.2, 3, 11) playAnimation(v1.c.idle, true, v1.c.x, v1.c.y, v1.c.r, v1.c.s, 100, 100, 0.5) if v1.c.chat.msgs > 28 then - love.graphics.draw(v1.ufoBottom, v1.c.x-368, v1.c.y-120, 0, v1.c.s*2) - love.graphics.draw(v1.ufoTop, v1.c.x-368, v1.c.y-120, 0, v1.c.s*2) + love.graphics.draw(v1.ufoBottom, v1.c.x-368/2*1.2+5, v1.c.y-110+60, 0, v1.c.s*1.2) + love.graphics.draw(v1.ufoTop, v1.c.x-368/2*1.2+5, v1.c.y-110+60, 0, v1.c.s*1.2) end if v1.c.chat.msgs == 2 then v1.c.xd = sys.w/2 @@ -169,7 +169,7 @@ function drawVirusFight1() v1.c.yd = -500 v1.c.xd = sys.w/2 elseif v1.c.chat.msgs == 29 then - v1.c.yd = 170 + v1.c.yd = 140 v1.c.xd = sys.w/2 end if v1.c.shine.s < -50 and v1.msgs[v1.c.chat.msgs] ~= nil then -- cgit