diff --git a/cocos2d/particle_nodes/CCParticleSystemQuad.js b/cocos2d/particle_nodes/CCParticleSystemQuad.js index 0ca1127d37..18ca321cac 100644 --- a/cocos2d/particle_nodes/CCParticleSystemQuad.js +++ b/cocos2d/particle_nodes/CCParticleSystemQuad.js @@ -675,8 +675,10 @@ cc.ParticleSystemQuad = cc.ParticleSystem.extend(/** @lends cc.ParticleSystemQua this._setupVBO(); //set the texture coord - var size = this._texture.getContentSize(); - this.initTexCoordsWithRect(cc.rect(0, 0, size.width, size.height)); + if(this._texture){ + var size = this._texture.getContentSize(); + this.initTexCoordsWithRect(cc.rect(0, 0, size.width, size.height)); + } } else this._totalParticles = tp; this.resetSystem();