Remove print statements

This commit is contained in:
Ryan Huffman 2014-11-04 09:14:14 -08:00
parent a3fa1e4ce8
commit fc977e21e6
2 changed files with 0 additions and 2 deletions

View file

@ -339,7 +339,6 @@ CameraManager = function() {
// Last mode that was first or third person
var lastAvatarCameraMode = "first person";
Camera.modeUpdated.connect(function(newMode) {
print("Camera mode has been updated: " + newMode);
if (newMode == "first person" || newMode == "third person") {
lastAvatarCameraMode = newMode;
that.disable(true);

View file

@ -820,7 +820,6 @@ function applyEntityProperties(data) {
var properties = data.createEntities[i].properties;
var newEntityID = Entities.addEntity(properties);
DELETED_ENTITY_MAP[entityID.id] = newEntityID;
print(newEntityID.isKnownID);
if (data.selectCreated) {
selectedEntityIDs.push(newEntityID);
}