nitro-engine/examples/effects/specular_material/assets.sh
Antonio Niño Díaz c037b79af4 examples: Stop using img2ds and switch to grit
img2ds is still required for the clear bitmap example because grit doesn't
support the clear depth format.
2024-01-27 18:25:38 +00:00

16 lines
292 B
Bash

#!/bin/sh
NITRO_ENGINE=$DEVKITPRO/nitro-engine
ASSETS=$NITRO_ENGINE/examples/assets
TOOLS=$NITRO_ENGINE/tools
OBJ2DL=$TOOLS/obj2dl/obj2dl.py
rm -rf data
mkdir -p data
python3 $OBJ2DL \
--input $ASSETS/teapot.obj \
--output data/teapot.bin \
--texture 256 256 \
--scale 0.1