diff options
| author | 2024-10-24 15:34:55 -0400 | |
|---|---|---|
| committer | 2024-10-24 15:34:55 -0400 | |
| commit | f789c1103856a253871846da6e41fcdf7aacd78b (patch) | |
| tree | a380c0b63f91fba1465d639301860782d66c0fec /scripts | |
| parent | 5cea6f91921c9c0963952609cecb1e28dd7bde12 (diff) | |
| download | mauri-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-x | scripts/random.sh | 4 |
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 .. |