This commit is contained in:
Thomas FORGIONE 2015-06-09 18:07:27 +02:00
parent 1b3ec8d57e
commit 8909981426
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ module.exports = function(io) {
(function (arr) {
setTimeout(function() {
socket.emit('vertex', arr);
}, i);
}, i*100);
})(arr);
} else if (lines[i][0] === 'f') {
fIndex++;
@ -44,7 +44,7 @@ module.exports = function(io) {
(function (arr) {
setTimeout(function() {
socket.emit('face', arr);
},i);
},i*100);
})(arr);
}