v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
16
scripts/findskippedmatids.sh
Normal file
16
scripts/findskippedmatids.sh
Normal file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd "`dirname \"$0\"`"
|
||||
|
||||
cd ../assets/packed/tiles/;
|
||||
|
||||
THISMAT=0;
|
||||
for i in $(grep materialId */*.material | awk '{print $4}' | sort -n );
|
||||
do
|
||||
THISMAT=$(($THISMAT+1));
|
||||
if [ ${i%?} -ne $THISMAT ];
|
||||
then
|
||||
echo "Skipped $THISMAT to $((${i%?}-1))";
|
||||
THISMAT=${i%?};
|
||||
fi;
|
||||
done;
|
Loading…
Add table
Add a link
Reference in a new issue