moonshine
moonshine copied to clipboard
Postprocessing effect repository for LÖVE
When using a canvas outside of the effect() function and then drawing that canvas to the inside of the function, it fails to preserve the translation. After much tinkering I...
Glow Is Not Working With The Text Graphics... See!  Please Help!
I don't know how obvious it is in this footage, but when glow is enabled, the entire image brightens in stuttery steps. I'm not sure why or how to properly...
before effect:  after effect (pixelate used on the bottom image):  This also applies to other effects as `godsray` and a few others. Only `glow` does work as expected...
**This PR targets the demo branch.** This is a companion PR to #58. It does several things: * merges in changes from master to demo including the changes from #58...
Update to love 11.0 colour format where all colours are normalized in [0,1]. Also fix some invalid indexing. While some effects will continue to work so long as users pass...
Hey! I'm running love 11.2 on a mac, and whenever I try to layer on blurs like this ``` blur1 = moonshine(moonshine.effects.boxblur) blur2 = moonshine(moonshine.effects.boxblur) blur1(function() lg.draw() end) blur2(function() lg.draw()...
I tried to make a neon effect for platforms that are supposed to move. For that, I chained three effects and tested a basic motion. Code is bellow. When I...