diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-17 13:17:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-17 13:17:33 -0300 |
commit | fd67810e60ed85e988154b83618dd6e33581bcac (patch) | |
tree | 284eff6555eeaa1b2d9dec6e155b84a8ddca1d35 | |
parent | 5c93b1131098eb8eb9133f25a1e0c8a13be34bf8 (diff) | |
download | client-fd67810e60ed85e988154b83618dd6e33581bcac.tar.gz client-fd67810e60ed85e988154b83618dd6e33581bcac.tar.bz2 client-fd67810e60ed85e988154b83618dd6e33581bcac.tar.xz client-fd67810e60ed85e988154b83618dd6e33581bcac.zip |
Move development stuff to a new, non built and git hidden, assets/ folder
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | game/gfx/square/.tools/mk.sh | 10 | ||||
-rwxr-xr-x | game/gfx/square/.tools/rz.sh | 8 | ||||
-rw-r--r-- | game/options.rpy | 1 |
4 files changed, 2 insertions, 18 deletions
@@ -15,6 +15,7 @@ saves/ # Compressed and dev *.rpa *.xcf +game/gfx/assets/* # Automatically Generated *_conf.rpy diff --git a/game/gfx/square/.tools/mk.sh b/game/gfx/square/.tools/mk.sh deleted file mode 100755 index 3110913..0000000 --- a/game/gfx/square/.tools/mk.sh +++ /dev/null @@ -1,10 +0,0 @@ -# This script applies a PNG mask to all files. -# Mask must be on the folder above. -dir=`pwd` - -FILES=`ls|grep png` -for file in $FILES; do - echo "AlphaMask $file" - convert $file ../mask.png -alpha off -compose CopyOpacity -composite $file -done - diff --git a/game/gfx/square/.tools/rz.sh b/game/gfx/square/.tools/rz.sh deleted file mode 100755 index fa43e98..0000000 --- a/game/gfx/square/.tools/rz.sh +++ /dev/null @@ -1,8 +0,0 @@ -# Resizer, DO NOT USE -dir=`pwd` - -FILES=`ls|grep png` -for file in $FILES; do - convert $file -resize 340x340 $file -done - diff --git a/game/options.rpy b/game/options.rpy index 9318b6b..97f9956 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -208,6 +208,7 @@ init python: build.classify('game/extra/**.webp', None) build.classify('game/extra/**.mp3', None) build.classify('game/extra/**.ogg', None) + build.classify('game/gfx/assets/**', None) ## These should not even exist, be sure! build.classify('music.bak/**', None) |