pan
pan copied to clipboard
puny animator – create motion graphics using Lua
Hi, I tried to install this project, but after verifying the dependencies, the build failes for `[email protected]`/`pan@#head`: ``` Prompt: Build failed for 'https://github.com/liquidev/[email protected]', would you like to try installing 'https://github.com/liquidev/pan@#head'...
This was my first time installing the package on my system, I just used the command you suggested in the README, `nimble install https://github.com/liquidev/pan` and the build failed. This is...
Just for fun, because why not. Should be easy to do as pan animations are based on time, not frames, unlike most animation software out there. It's just a question...
# Actual output `pan | less` prints ESC characters to less making the output unreadable # Fix implement https://stackoverflow.com/questions/2142796/in-linux-how-can-i-test-whether-the-output-of-a-program-is-going-to-a-live-term or use -R flag for less `pan | less -R` #...
The current timeline is really lame, it's just a measly timer with no real functions apart from helping you to roughly understand where you are in the animation. Use rdgui...
Images
Possible API for this: ```lua cat = pan.image("cat.png") function render() -- to blit the entire image at x=32 y=32 pan.blit(cat, 32, 32) -- to blit the image at x=32 y=32...
Possible API for this: ```lua blackwhite = pan.linearGradient(math.pi / 4) :stop(0, gray(0)) :stop(1, gray(255)) function render() clear(blackwhite) end ```