removed before event emitter for attr changes to improve performance. I don't think it's really needed

This commit is contained in:
Eric Rowell
2013-12-02 00:06:27 -08:00
parent 722ae82f21
commit f966758bce
4 changed files with 28 additions and 5 deletions

View File

@@ -66,7 +66,7 @@
for (var i = 0; i < circles.length; i++) {
var x = Math.random() * width;
var y = Math.random() * height;
circles[i].setPosition(x, y);
circles[i].setPosition({x: x, y: y});
}
lastTime = time;