From c5a1fe7e0d429ec5f3eed156772f7c042608a432 Mon Sep 17 00:00:00 2001 From: "." <.> Date: Wed, 14 May 2025 23:22:09 +0200 Subject: [PATCH] auto create assets from production files --- Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 13052a5..7b64ccd 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,10 @@ all: tileset.png character.png -tileset.png: tileset3.svg - inkscape -Cd 180 --export-png=$@ $< +tileset.png: tileset4.svg + inkscape -Cd 192 --export-png-antialias 1 --export-png=$@ $< -character.png: character_3.svg - inkscape -Cd 180 --export-png=$@ $< +character.png: character_5.blend + mkdir -p render/ + blender -b "$<" -a + montage render/????.png -background transparent -tile 24x -geometry +0+0 "$@" -- 2.39.5