Fixed resetting filters

This commit is contained in:
Nathan Dinsmore 2013-11-16 15:44:00 -05:00
parent 5cacaa8e1e
commit 2db0268305

View file

@ -90,14 +90,16 @@ Runtime.prototype.stopAll = function() {
stopAllSounds(); stopAllSounds();
// Hide reporters // Hide reporters
for (var s = 0; s < runtime.sprites.length; s++) { for (var s = 0; s < runtime.sprites.length; s++) {
if (typeof runtime.sprites[s].hideBubble == 'function') { if (runtime.sprites[s].hideBubble) {
runtime.sprites[s].hideBubble(); runtime.sprites[s].hideBubble();
} }
} }
// Reset graphic effects // Reset graphic effects
runtime.stage.resetFilters(); runtime.stage.resetFilters();
for (var s = 0; s < runtime.sprites.length; s++) { for (var s = 0; s < runtime.sprites.length; s++) {
runtime.sprites[s].resetFilters(); if (runtime.sprites[s].resetFilters) {
runtime.sprites[s].resetFilters();
}
} }
}; };