fix bug in osgb/osgt/osgx readerwriter causing the osgParticle-SizeInterpolator and -ColorInterpolator to dissapear
This commit is contained in:
parent
ad0e6a0f81
commit
15a90f63b8
@ -36,7 +36,7 @@ bool readParticle( osgDB::InputStream& is, osgParticle::Particle& p )
|
||||
if ( hasInterpolator )
|
||||
{
|
||||
is >> is.BEGIN_BRACKET;
|
||||
p.setAlphaInterpolator( is.readObjectOfType<osgParticle::Interpolator>() );
|
||||
p.setSizeInterpolator( is.readObjectOfType<osgParticle::Interpolator>() );
|
||||
is >> is.END_BRACKET;
|
||||
}
|
||||
is >> is.PROPERTY("AlphaInterpolator") >> hasInterpolator;
|
||||
@ -50,7 +50,7 @@ bool readParticle( osgDB::InputStream& is, osgParticle::Particle& p )
|
||||
if ( hasInterpolator )
|
||||
{
|
||||
is >> is.BEGIN_BRACKET;
|
||||
p.setAlphaInterpolator( is.readObjectOfType<osgParticle::Interpolator>() );
|
||||
p.setColorInterpolator( is.readObjectOfType<osgParticle::Interpolator>() );
|
||||
is >> is.END_BRACKET;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user