diff options
author | epoch <epoch@hacking.allowed.org> | 2017-01-07 14:37:54 -0600 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2017-01-07 14:37:54 -0600 |
commit | 7716223ab6f9024300003097d680f498629175be (patch) | |
tree | d37dc3f2de68f8686b786e3bb579da82f3d135eb /src | |
parent | ebc03fd33fb808db47e47c2426ee6f6879721d4a (diff) | |
download | hackvr-7716223ab6f9024300003097d680f498629175be.tar.gz hackvr-7716223ab6f9024300003097d680f498629175be.zip |
made it randomize the order of shapes of models and slowed it down to make it cooler to watch.
Diffstat (limited to 'src')
-rwxr-xr-x | src/testit.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testit.sh b/src/testit.sh index 7e333aa..daecd55 100755 --- a/src/testit.sh +++ b/src/testit.sh @@ -1,7 +1,7 @@ #!/bin/bash -cat <(../tools/obj2hackvr2.pl woman ../meshes/female_basemesh1_2.obj) \ +cat <(../tools/obj2hackvr2.pl woman ../meshes/female_basemesh1_2.obj | sort -R) \ <(echo "woman move 10 0 0") \ - <(../tools/obj2hackvr2.pl woman2 ../meshes/female_basemesh1_2.obj) \ + <(../tools/obj2hackvr2.pl woman2 ../meshes/female_basemesh1_2.obj | sort -R) \ <(echo "woman2 move -10 0 0") \ - <(../tools/obj2hackvr2.pl woman3 ../meshes/female_basemesh1_2.obj) | ./hackvr $USER + <(../tools/obj2hackvr2.pl woman3 ../meshes/female_basemesh1_2.obj | sort -R) | ./slowcat 10000 | ./hackvr $USER #../tools/obj2hackvr.pl woman ../meshes/female_basemesh1_2.obj | ./hackvr epoch |