Skip to content

Commit 62281f6

Browse files
committed
cleanup
1 parent a6d4dbb commit 62281f6

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

core/src/TeaCup/Animation.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,9 @@ let subs: Array<RafSub<any>> = [];
3030
let ticking = false;
3131

3232
function tick() {
33-
console.log("tick()");
3433
if (!ticking) {
3534
ticking = true;
3635
requestAnimationFrame((t: number) => {
37-
console.log("got RAF", t, "subs", subs.length);
3836
subs.forEach((s) => s.trigger(t));
3937
ticking = false;
4038
});

0 commit comments

Comments
 (0)