From 45ab40ebcbea6f67b0a021f69a91f918fd37eb05 Mon Sep 17 00:00:00 2001 From: Nathan DECHER Date: Fri, 27 Mar 2020 00:09:19 +0100 Subject: [PATCH] fire animation should require less ressources --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 106fa27..917d168 100644 --- a/Makefile +++ b/Makefile @@ -39,10 +39,10 @@ public/assets/%-ts.png: assets/%.png convert $^ -scale 32x $@ public/assets/fire-anim.png: $(FIRE_ANIM) - convert $^ -append -scale 32x $@ + convert $^ -append $@ build/fire%.png: assets/fire.png - convert $^ -distort ScaleRotateTranslate $(shell echo $@ | sed 's/[^0-9]*//g') $@ + convert $^ -distort ScaleRotateTranslate $(shell echo $@ | sed 's/[^0-9]*//g') -resize 32x $@ public/assets/%.json: assets/%.json cp $^ $@