mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 02:52:57 +02:00
logging
This commit is contained in:
parent
78775baf8c
commit
5dbec15ae0
6 changed files with 13 additions and 5 deletions
|
@ -455,5 +455,5 @@ FishTank = function(spawnPosition, spawnRotation) {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.cleanup = cleanup;
|
this.cleanup = cleanup;
|
||||||
|
print('CREATED FISH!');
|
||||||
}
|
}
|
|
@ -58,7 +58,6 @@ Plant = function(spawnPosition, spawnRotation) {
|
||||||
parentID: bowl
|
parentID: bowl
|
||||||
});
|
});
|
||||||
|
|
||||||
print('CREATED PLANT:: '+ plant)
|
|
||||||
|
|
||||||
var WATER_CAN_MODEL_URL = "https://s3-us-west-1.amazonaws.com/hifi-content/eric/models/waterCan.fbx?v1" + Math.random();
|
var WATER_CAN_MODEL_URL = "https://s3-us-west-1.amazonaws.com/hifi-content/eric/models/waterCan.fbx?v1" + Math.random();
|
||||||
|
|
||||||
|
@ -144,4 +143,7 @@ Plant = function(spawnPosition, spawnRotation) {
|
||||||
|
|
||||||
this.cleanup = cleanup;
|
this.cleanup = cleanup;
|
||||||
|
|
||||||
|
print('CREATED PLANT:: '+ plant)
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
|
@ -68,4 +68,7 @@ _PingPongGun = function(spawnPosition, spawnRotation) {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.cleanup = cleanup;
|
this.cleanup = cleanup;
|
||||||
|
|
||||||
|
print('CREATED PING PONG GUN')
|
||||||
|
|
||||||
}
|
}
|
|
@ -159,9 +159,9 @@
|
||||||
dynamicEntities.push(fishTank);
|
dynamicEntities.push(fishTank);
|
||||||
dynamicEntities.push(tiltMaze);
|
dynamicEntities.push(tiltMaze);
|
||||||
dynamicEntities.push(whiteboard);
|
dynamicEntities.push(whiteboard);
|
||||||
dynamicEntities.push(myPlant);
|
|
||||||
dynamicEntities.push(pingPongGun);
|
|
||||||
|
|
||||||
|
dynamicEntities.push(pingPongGun);
|
||||||
|
dynamicEntities.push(myPlant);
|
||||||
//v2.0
|
//v2.0
|
||||||
|
|
||||||
// var musicBox = new MusicBox();
|
// var musicBox = new MusicBox();
|
||||||
|
|
|
@ -281,5 +281,6 @@ TiltMaze = function(spawnPosition, spawnRotation) {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.cleanup = cleanup;
|
this.cleanup = cleanup;
|
||||||
|
print('CREATED TILTMAZE')
|
||||||
|
|
||||||
}
|
}
|
|
@ -38,7 +38,7 @@ Whiteboard = function(spawnPosition, spawnRotation) {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
print('whiteboard:' + whiteboard)
|
|
||||||
|
|
||||||
var whiteboardSurfacePosition = Vec3.sum(whiteboardPosition, {
|
var whiteboardSurfacePosition = Vec3.sum(whiteboardPosition, {
|
||||||
x: 0.0,
|
x: 0.0,
|
||||||
|
@ -242,4 +242,6 @@ Whiteboard = function(spawnPosition, spawnRotation) {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.cleanup = cleanup;
|
this.cleanup = cleanup;
|
||||||
|
|
||||||
|
print('CREATED WHITEBOARD')
|
||||||
}
|
}
|
Loading…
Reference in a new issue