Two test changes

This commit is contained in:
Thomas FORGIONE 2015-05-22 17:05:59 +02:00
parent a6a6c3521c
commit 02650d6ea6
2 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ var Cube = function(size, style) {
if (style === undefined) style = {};
this.geometry = new THREE.BoxGeometry(size, size, size);
// this.geometry.computeVertexNormals();
this.material = new THREE.MeshLambertMaterial(style);

View File

@ -85,5 +85,5 @@ if ( app.get('env') === 'development' ) {
}
// Start server
console.log("Server started on " + server_ip_address + ":" + server_port);
console.log("Server ready : " + server_ip_address + ":" + server_port);
app.listen(server_port, server_ip_address);