added asset conversion script

trunk
Kit Swinton 2024-02-23 10:25:38 +11:00
parent e00b91cc46
commit 2e03af4316
12 changed files with 37 additions and 0 deletions

37
assets.sh 100644
View File

@ -0,0 +1,37 @@
#!/bin/sh
NITRO_ENGINE=$DEVKITPRO/nitro-engine
ASSETS=./assets
TOOLS=$NITRO_ENGINE/tools
MD5_TO_DSMA=$TOOLS/md5_to_dsma/md5_to_dsma.py
GRIT=grit
rm -rf nitrofiles
mkdir -p nitrofiles
# Chibi model
python3 $MD5_TO_DSMA \
--model $ASSETS/chibi_kp/chibi_kp.md5mesh \
--name chibi_kp \
--output nitrofiles \
--texture 256 256 \
--anim $ASSETS/chibi_kp/chibi_kp_spin.md5anim \
--skip-frames 1 \
--blender-fix
$GRIT \
$ASSETS/chibi_kp/chibi_kp_albedo.png \
-ftb -fh! -W1 \
-onitrofiles/chibi_kp_texture
# Badge Graphic
mkdir nitrofiles/bmp
$GRIT \
$ASSETS/badge_01.jpg -ftb -fh! -gb -fB16
for file in *.bin; do
mv -- "$file" "${file%.bin}"
done
mv *.img nitrofiles/bmp

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.