summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2024-10-24 15:34:55 -0400
committerAndrew Opalach <andrew@akon.city> 2024-10-24 15:34:55 -0400
commitf789c1103856a253871846da6e41fcdf7aacd78b (patch)
treea380c0b63f91fba1465d639301860782d66c0fec /scripts
parent5cea6f91921c9c0963952609cecb1e28dd7bde12 (diff)
downloadmauri-f789c1103856a253871846da6e41fcdf7aacd78b.tar.gz
mauri-f789c1103856a253871846da6e41fcdf7aacd78b.tar.bz2
mauri-f789c1103856a253871846da6e41fcdf7aacd78b.zip
Always load but don't draw invisible objects
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/random.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/random.sh b/scripts/random.sh
index 2f097cb..44a00a1 100755
--- a/scripts/random.sh
+++ b/scripts/random.sh
@@ -1,7 +1,7 @@
#! /usr/bin/env bash
BUILD_DIR=build
-WALLPAPERS_PATH=workshop_wallpapers
+WALLPAPERS_PATH=workshop_wallpapers_11-8-21
while : ; do
DIR=$(find $WALLPAPERS_PATH -mindepth 1 -maxdepth 1 -type d -print0 | shuf -zn1 | xargs --null)
@@ -21,5 +21,5 @@ done
echo $DIR
cd $BUILD_DIR
-./mauri -p ../$DIR/scene.pkg -w 1600 -h 900
+./mauri -p ../$DIR/scene.pkg -a /mnt/hdd/SteamLibrary/steamapps/common/wallpaper_engine/assets -w 1600 -h 900
cd ..