Merge pull request #215 from LaurensVoerman/submit-SerializerParticle
Submit serializer particle
This commit is contained in:
commit
c364bbb19b
@ -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;
|
||||
}
|
||||
|
||||
@ -81,8 +81,8 @@ bool readParticle( osgDB::InputStream& is, osgParticle::Particle& p )
|
||||
is >> is.END_BRACKET;
|
||||
}
|
||||
|
||||
is >> is.END_BRACKET;
|
||||
}
|
||||
is >> is.END_BRACKET;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user