assets: add needed assets for the battle system

This commit is contained in:
Kazhnuz 2019-03-10 13:35:35 +01:00
parent f43f4e81b5
commit 824fcb866b
22 changed files with 10 additions and 10 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 436 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 B

View file

@ -32,7 +32,7 @@ function love.load()
core = Core()
game = Game()
scenes.title()
scenes.cbs()
end
function love.update(dt)

View file

@ -7,10 +7,10 @@ function Background:new(controller, levelname)
local borderline = self.controller.datas.borders or 1
self.textures = {}
self.textures.tiles = love.graphics.newImage("assets/levels/normaltile.png")
self.textures.back1 = love.graphics.newImage("assets/levels/backgrounds/" .. backname .. "-back.png")
self.textures.back2 = love.graphics.newImage("assets/levels/backgrounds/" .. backname .. "-fore.png")
self.textures.borders = love.graphics.newImage("assets/levels/borders.png")
self.textures.tiles = love.graphics.newImage("assets/backgrounds/normaltile.png")
self.textures.back1 = love.graphics.newImage("assets/backgrounds/parallax/" .. backname .. "-back.png")
self.textures.back2 = love.graphics.newImage("assets/backgrounds/parallax/" .. backname .. "-fore.png")
self.textures.borders = love.graphics.newImage("assets/backgrounds/borders.png")
self.quads = {}
self.quads.tiles = {}

View file

@ -43,11 +43,11 @@ function BattleArena:loadRessources()
local borderline = self.datas.borders or 1
self.textures = {}
self.textures.tiles = love.graphics.newImage("assets/levels/normaltile.png")
self.textures.sptiles = love.graphics.newImage("assets/levels/specialtile.png")
self.textures.back1 = love.graphics.newImage("assets/levels/backgrounds/" .. backname .. "-back.png")
self.textures.back2 = love.graphics.newImage("assets/levels/backgrounds/" .. backname .. "-fore.png")
self.textures.borders = love.graphics.newImage("assets/levels/borders.png")
self.textures.tiles = love.graphics.newImage("assets/backgrounds/normaltile.png")
self.textures.sptiles = love.graphics.newImage("assets/backgrounds/specialtile.png")
self.textures.back1 = love.graphics.newImage("assets/backgrounds/parallax/" .. backname .. "-back.png")
self.textures.back2 = love.graphics.newImage("assets/backgrounds/parallax/" .. backname .. "-fore.png")
self.textures.borders = love.graphics.newImage("assets/backgrounds/borders.png")
self.textures.shadow = love.graphics.newImage("assets/sprites/shadow.png")
self.quads = {}