PR comments

This commit is contained in:
Brad Davis 2015-09-29 14:23:56 -07:00
parent 7b1c04512a
commit 9b13aac37d
2 changed files with 4 additions and 16 deletions

View file

@ -37,16 +37,6 @@ ColorCube.prototype.create = function() {
});
}
var ColorCube = new ColorCube();
ColorCube.clear();
ColorCube.create();
var ids = Entities.findEntities(MyAvatar.position, 50);
var that = this;
ids.forEach(function(id) {
var properties = Entities.getEntityProperties(id);
if (properties.name == that.NAME) {
Entities.deleteEntity(id);
}
}, this);
var colorCube = new ColorCube();
colorCube.clear();
colorCube.create();

View file

@ -121,9 +121,7 @@ public:
static const glm::mat4 pose; return pose;
}
virtual float getIPD() const {
return 0.0f;
}
virtual float getIPD() const { return 0.0f; }
virtual void abandonCalibration() {}
virtual void resetSensors() {}