mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Remove logging statements.
This commit is contained in:
parent
94a6860f7f
commit
a9780374f2
1 changed files with 0 additions and 2 deletions
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue