lua-love-platformer/coin.lua

13 lines
245 B
Lua
Raw Normal View History

2018-01-18 04:38:37 +00:00
coins = {}
function spawnCoin(x, y)
local coin = {}
coin.x = x
coin.y = y
coin.grid = anim8.newGrid(41, 42, 123, 126)
coin.animation = anim8.newAnimation(coin.grid('1-3', 1, '1-3', 2, '1-2', 3), 0.1)
table.insert(coins, coin)
end