| 187 | } |
| 188 | |
| 189 | ParticleNode::ParticleNode(ParticleDef* def) |
| 190 | : _particleDef(def) |
| 191 | , _elapsed(0) |
| 192 | , _emitCounter(0) |
| 193 | , _texLeft(0) |
| 194 | , _texTop(0) |
| 195 | , _texRight(0) |
| 196 | , _texBottom(0) |
| 197 | , _renderState(BGFX_STATE_NONE) |
| 198 | , _effect(SharedSpriteRenderer.getDefaultEffect()) { } |
| 199 | |
| 200 | ParticleNode::ParticleNode(String filename) |
| 201 | : ParticleNode(SharedParticleCache.load(filename)) { } |
nothing calls this directly
no test coverage detected