mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +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) {
|
||||
var handPosition = Controller.getSpatialControlPosition(this.palm);
|
||||
this.distanceToEntity = Vec3.distance(handPosition, intersection.properties.position);
|
||||
print("distance to entity " + JSON.stringify(this.distanceToEntity));
|
||||
Entities.editEntity(this.pointer, {
|
||||
linePoints: [
|
||||
ZERO_VEC,
|
||||
|
@ -191,7 +190,6 @@ controller.prototype.hidePointer = function() {
|
|||
|
||||
controller.prototype.letGo = function() {
|
||||
if (this.grabbedEntity && this.actionID) {
|
||||
print("DELETE ACTION")
|
||||
this.deactivateEntity(this.grabbedEntity);
|
||||
Entities.deleteAction(this.grabbedEntity, this.actionID);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue