Got rid of debug message in handControllerGrab script

This commit is contained in:
ericrius1 2015-10-12 17:36:07 -07:00
parent fb040426eb
commit 33ff21f376
2 changed files with 1 additions and 1 deletions

View file

@ -569,7 +569,6 @@ function MyController(hand, triggerAction) {
this.setState(STATE_RELEASE);
return;
}
print("AHHHHHH")
Entities.callEntityMethod(this.grabbedEntity, "continueNearGrabbingNonColliding");
};

View file

@ -55,6 +55,7 @@
};
this.intersection = Entities.findRayIntersection(pickRay, true, [this.entityID]);
// Comment above line and uncomment below line to test difference in judder when whitelist is and is not provided
// this.intersection = Entities.findRayIntersection(pickRay, true);
},