light_world.lua/examples/animation.lua

50 lines
1.6 KiB
Lua
Raw Normal View History

2014-12-04 16:42:28 +00:00
local LightWorld = require "lib"
2021-11-10 01:15:14 +00:00
local x, y, z, scale = 20, -55, 1, 3.5
local function load()
-- load images
2021-11-20 01:14:08 +00:00
image = love.graphics.newImage("examples/img/animation/scott_pilgrim.png")
image_normal = love.graphics.newImage("examples/img/animation/scott_pilgrim_NRM.png")
2021-11-10 01:15:14 +00:00
-- create light world
lightWorld = LightWorld({ambient = {0.49, 0.49, 0.49}})
-- create light
lightMouse = lightWorld:newLight(0, 0, 1, 0.49, 0.24, 300)
-- create shadow bodys
animation = lightWorld:newAnimationGrid(image, 100, 100)
2014-12-04 16:42:28 +00:00
animation:setNormalMap(image_normal)
grid = animation:newGrid(108, 140)
animation:addAnimation('run right', grid('1-8', 1), 0.1)
animation:addAnimation('run left', grid('8-1', 2), 0.1)
2014-12-04 16:42:28 +00:00
end
2021-11-10 01:15:14 +00:00
local function update(dt)
love.window.setTitle("Light vs. Shadow Engine (FPS:" .. love.timer.getFPS() .. ")")
if love.keyboard.isDown("a") then
animation:setAnimation('run left')
2021-11-10 01:15:14 +00:00
elseif love.keyboard.isDown("d") then
animation:setAnimation('run right')
2021-11-10 01:15:14 +00:00
end
lightWorld:update(dt)
2021-11-10 01:15:14 +00:00
lightMouse:setPosition((love.mouse.getX() - x)/scale, (love.mouse.getY() - y)/scale, z)
end
2021-11-10 01:15:14 +00:00
local function draw()
2014-12-04 16:42:28 +00:00
lightWorld:setTranslation(x, y, scale)
love.graphics.push()
love.graphics.translate(x, y)
love.graphics.scale(scale)
lightWorld:draw(function()
love.graphics.setColor(255, 255, 255)
love.graphics.rectangle("fill", -x/scale, -y/scale, love.graphics.getWidth()/scale, love.graphics.getHeight()/scale)
animation:drawAnimation()
2014-12-04 16:42:28 +00:00
end)
love.graphics.pop()
end
2021-11-10 01:15:14 +00:00
return {
load = load,
update = update,
draw = draw,
mousepressed = mousepressed,
}