Removed debug prints from particleBirds.js

This commit is contained in:
barnold1953 2014-06-02 10:44:50 -07:00
parent 863e2c56ae
commit 9e882957c4

View file

@ -152,7 +152,6 @@ function updateBirds(deltaTime) {
// Update all the birds
for (var i = 0; i < numBirds; i++) {
print("Updating");
particleID = birdParticleIDs[i];
var properties = Particles.getParticleProperties(particleID);
@ -216,7 +215,6 @@ function updateBirds(deltaTime) {
// Update the particle
Particles.editParticle(particleID, properties);
print("Updated yay");
}
}
}