stuff
This commit is contained in:
parent
1e299dfa84
commit
204021b9ae
11 changed files with 143 additions and 26 deletions
|
@ -11,28 +11,41 @@ end
|
|||
function Update(dt, curTime)
|
||||
end
|
||||
|
||||
local sprite = Spritesheet("testSprites.json", 16, 16, Color(48, 104, 80, 255))
|
||||
local sprite = Spritesheet("testSprites.png", 16, 16, Color(48, 104, 80, 255))
|
||||
local tileset = Spritesheet("tileset.json", 16, 16, Color(48, 104, 80, 255))
|
||||
local testSound = Sound("testSound.mp3", "static")
|
||||
|
||||
local test = 1
|
||||
local test2 = 1
|
||||
function KeyPressed(key)
|
||||
if (key == "f3") then
|
||||
test = test - 1
|
||||
test2 = test2 - 1
|
||||
|
||||
if (test == 0) then
|
||||
test = sprite.Count
|
||||
end
|
||||
if (test2 == 0) then
|
||||
test2 = tileset.Count
|
||||
end
|
||||
elseif (key == "f4") then
|
||||
test = test + 1
|
||||
test2 = test2 + 1
|
||||
|
||||
if (test == sprite.Count + 1) then
|
||||
test = 1
|
||||
end
|
||||
if (test2 == tileset.Count + 1) then
|
||||
test2 = 1
|
||||
end
|
||||
elseif (key == "f2") then
|
||||
testSound:Play()
|
||||
end
|
||||
end
|
||||
|
||||
function Draw()
|
||||
DrawText(test .. "/" .. sprite.Count, 25, 25)
|
||||
sprite:Draw(test, 50, 0)
|
||||
DrawText(test .. "/" .. sprite.Count, 50, 25)
|
||||
|
||||
sprite:Draw(test, 5, 25)
|
||||
tileset:Draw(test2, 25, 0)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue