Remove logging statements.

This commit is contained in:
Jonathan Puckey 2011-08-02 11:07:59 +02:00
parent 94a6860f7f
commit a9780374f2

View file

@ -437,13 +437,11 @@ var View = this.View = Base.extend(/** @lends View# */{
function exportFrame(param) { function exportFrame(param) {
count++; count++;
if (view.onFrame) { if (view.onFrame) {
var then = new Date();
view.onFrame({ view.onFrame({
delta: frameDuration, delta: frameDuration,
time: frameDuration * count, time: frameDuration * count,
count: count count: count
}); });
console.log(new Date() - then, ' onFrame');
} }
view.draw(); view.draw();
var filename = param.prefix + toPaddedString(count, 6) + '.png', var filename = param.prefix + toPaddedString(count, 6) + '.png',