mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-21 16:29:27 +02:00
removed print statements
This commit is contained in:
parent
7133fc94f5
commit
572b120bf0
1 changed files with 0 additions and 2 deletions
|
@ -138,7 +138,6 @@ controller.prototype.checkForIntersections = function(origin, direction) {
|
||||||
if (intersection.intersects && intersection.properties.collisionsWillMove === 1) {
|
if (intersection.intersects && intersection.properties.collisionsWillMove === 1) {
|
||||||
var handPosition = Controller.getSpatialControlPosition(this.palm);
|
var handPosition = Controller.getSpatialControlPosition(this.palm);
|
||||||
this.distanceToEntity = Vec3.distance(handPosition, intersection.properties.position);
|
this.distanceToEntity = Vec3.distance(handPosition, intersection.properties.position);
|
||||||
print("distance to entity " + JSON.stringify(this.distanceToEntity));
|
|
||||||
Entities.editEntity(this.pointer, {
|
Entities.editEntity(this.pointer, {
|
||||||
linePoints: [
|
linePoints: [
|
||||||
ZERO_VEC,
|
ZERO_VEC,
|
||||||
|
@ -191,7 +190,6 @@ controller.prototype.hidePointer = function() {
|
||||||
|
|
||||||
controller.prototype.letGo = function() {
|
controller.prototype.letGo = function() {
|
||||||
if (this.grabbedEntity && this.actionID) {
|
if (this.grabbedEntity && this.actionID) {
|
||||||
print("DELETE ACTION")
|
|
||||||
this.deactivateEntity(this.grabbedEntity);
|
this.deactivateEntity(this.grabbedEntity);
|
||||||
Entities.deleteAction(this.grabbedEntity, this.actionID);
|
Entities.deleteAction(this.grabbedEntity, this.actionID);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue