From Brede Johansen, tweaks to emitter classes to make them more extensible.

This commit is contained in:
Robert Osfield 2005-04-26 19:34:03 +00:00
parent a47a6a4886
commit 4f6114ef77
2 changed files with 1 additions and 2 deletions

View File

@ -65,7 +65,6 @@ namespace osgParticle
virtual void emit(double dt) = 0;
private:
bool usedeftemp_;
Particle ptemp_;
};

View File

@ -79,7 +79,7 @@ namespace osgParticle
virtual ~ModularEmitter() {}
ModularEmitter &operator=(const ModularEmitter &) { return *this; }
void emit(double dt);
virtual void emit(double dt);
private:
osg::ref_ptr<Counter> counter_;