shack - screen effects made simple
Posted: Sat Apr 30, 2016 5:18 pm
Hello,
Here's another minimalist library that, I hope, will be useful to you.
shack is a library that aims to let you easily add screen effects such as shake and rotation.
https://github.com/Ulydev/shack
Here's another minimalist library that, I hope, will be useful to you.
shack is a library that aims to let you easily add screen effects such as shake and rotation.
Code: Select all
local screen = require "shack"
function love.update(dt)
screen:update(dt)
end
function love.draw()
screen:apply()
--draw here
end
screen:shake(20)