From 11ef7059e98555914a1bdebaae37433d64942c4e Mon Sep 17 00:00:00 2001 From: 1029chris <1029chris@gmail.com> Date: Thu, 18 Aug 2016 21:51:09 -0700 Subject: Did more for virus 2 fight - Added different hands - Added shotgun fire and cock sounds - Virus 2 moves around --- assets.lua | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'assets.lua') diff --git a/assets.lua b/assets.lua index d105904..b8a1da6 100644 --- a/assets.lua +++ b/assets.lua @@ -237,7 +237,11 @@ function loadAssets(id) v2.c.idle.pic = love.graphics.newImage("assets/virus2_idle.png") v2.c.pupil = love.graphics.newImage("assets/virus2_pupil.png") v2.c.idle.hands = love.graphics.newImage("assets/virus2_hands_idle.png") + v2.c.idle.gunidle = love.graphics.newImage("assets/virus2_hands_gunidle.png") + v2.c.idle.fist = love.graphics.newImage("assets/virus2_hands_fist.png") v2.c.idle.f = 1 + v2.c.cockgun = love.audio.newSource("assets/virus2_shotgun_cock.ogg") + v2.c.cockgunplay = false loadAnimation(v2.c.idle.pic, v2.c.idle.fs, 37, 10, 250, 250) v2.c.idle.mask = {} v2.c.idle.mask.fs = {} -- cgit