reanimate/videos/map-projection/EndScene.hs
Jan Hrcek 0aca2333e2
Fix some hlint warnings, and more consistency in examples (#167)
* 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
2020-09-20 22:51:22 +08:00

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 ]