18 lines
363 B
C++
18 lines
363 B
C++
#include <osgParticle/Emitter>
|
|
#include <osgParticle/ParticleProcessor>
|
|
|
|
#include <osg/CopyOp>
|
|
|
|
osgParticle::Emitter::Emitter()
|
|
: ParticleProcessor(),
|
|
usedeftemp_(true)
|
|
{
|
|
}
|
|
|
|
osgParticle::Emitter::Emitter(const Emitter ©, const osg::CopyOp ©op)
|
|
: ParticleProcessor(copy, copyop),
|
|
usedeftemp_(copy.usedeftemp_),
|
|
ptemp_(copy.ptemp_)
|
|
{
|
|
}
|