mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:44:01 +02:00
removed some unneeded stuff
This commit is contained in:
parent
fc962749c0
commit
f6aaaad211
1 changed files with 1 additions and 10 deletions
|
@ -16,7 +16,7 @@ function length(v) {
|
|||
|
||||
|
||||
function printVector(v) {
|
||||
print(v.x + ", " + v.y + ", " + v.z + "\n");
|
||||
print(v.x + ", " + v.y + ", " + v.z);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -42,15 +42,6 @@ if (leftHanded) {
|
|||
var chordHand = 0;
|
||||
}
|
||||
|
||||
// State Machine:
|
||||
// 0 = not triggered
|
||||
// 1 = triggered, waiting to stop to play sound
|
||||
var state = new Array();
|
||||
state[0] = 0;
|
||||
state[1] = 0;
|
||||
var strokeSpeed = new Array();
|
||||
strokeSpeed[0] = 0.0;
|
||||
strokeSpeed[1] = 0.0;
|
||||
var lastPosition = { x: 0.0,
|
||||
y: 0.0,
|
||||
z: 0.0 };
|
||||
|
|
Loading…
Reference in a new issue