mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-11 16:12:20 +00:00
* Remove redundant brackets * Various hlint fixes * Remove unused language pragrams and other fixes * Use addStatic more consistently in examples * Rename remaining usages of sceneAnimation to scene
10 lines
224 B
Haskell
10 lines
224 B
Haskell
module EndScene (endScene) where
|
|
|
|
import Reanimate
|
|
import Reanimate.Builtin.Images
|
|
|
|
endScene :: Animation
|
|
endScene = mkAnimation 10 $ const $
|
|
mkGroup
|
|
[ mkBackground "black"
|
|
, scale 0.5 githubIcon ]
|