diff options
author | epoch <epoch@hacking.allowed.org> | 2017-01-04 21:10:56 -0600 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2017-01-04 21:10:56 -0600 |
commit | 1d60a2e49190040bcd43e7887d8ef71bfb9aad65 (patch) | |
tree | 54bb865b0f70ffb152926f8961dd99604b555be4 | |
parent | aa423fa53e2a5a1c376203faff0f5b8c75d4b9d8 (diff) | |
download | hackvr-1d60a2e49190040bcd43e7887d8ef71bfb9aad65.tar.gz hackvr-1d60a2e49190040bcd43e7887d8ef71bfb9aad65.zip |
changed the testit.sh script to include multiple objects to test item selection and higher amounts of shapes
-rwxr-xr-x | src/testit.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/testit.sh b/src/testit.sh index d0911a5..7e333aa 100755 --- a/src/testit.sh +++ b/src/testit.sh @@ -1,3 +1,7 @@ -#!/bin/sh -../tools/obj2hackvr2.pl woman ../meshes/female_basemesh1_2.obj | ./hackvr $USER +#!/bin/bash +cat <(../tools/obj2hackvr2.pl woman ../meshes/female_basemesh1_2.obj) \ + <(echo "woman move 10 0 0") \ + <(../tools/obj2hackvr2.pl woman2 ../meshes/female_basemesh1_2.obj) \ + <(echo "woman2 move -10 0 0") \ + <(../tools/obj2hackvr2.pl woman3 ../meshes/female_basemesh1_2.obj) | ./hackvr $USER #../tools/obj2hackvr.pl woman ../meshes/female_basemesh1_2.obj | ./hackvr epoch |