Merging r6250 through r6254 from trunk to ogl-es branch
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/branches/ogl-es@6255 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
@@ -19,22 +19,22 @@ namespace irr
|
||||
public:
|
||||
CParticleScaleAffector(const core::dimension2df& scaleTo = core::dimension2df(1.0f, 1.0f));
|
||||
|
||||
virtual void affect(u32 now, SParticle *particlearray, u32 count) _IRR_OVERRIDE_;
|
||||
virtual void affect(u32 now, SParticle *particlearray, u32 count) IRR_OVERRIDE;
|
||||
|
||||
//! Writes attributes of the object.
|
||||
//! Implement this to expose the attributes of your scene node animator for
|
||||
//! scripting languages, editors, debuggers or xml serialization purposes.
|
||||
virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const _IRR_OVERRIDE_;
|
||||
virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const IRR_OVERRIDE;
|
||||
|
||||
//! Reads attributes of the object.
|
||||
//! Implement this to set the attributes of your scene node animator for
|
||||
//! scripting languages, editors, debuggers or xml deserialization purposes.
|
||||
//! \param startIndex: start index where to start reading attributes.
|
||||
//! \return: returns last index of an attribute read by this affector
|
||||
virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options) _IRR_OVERRIDE_;
|
||||
virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options) IRR_OVERRIDE;
|
||||
|
||||
//! Get emitter type
|
||||
virtual E_PARTICLE_AFFECTOR_TYPE getType() const _IRR_OVERRIDE_;
|
||||
virtual E_PARTICLE_AFFECTOR_TYPE getType() const IRR_OVERRIDE;
|
||||
|
||||
protected:
|
||||
core::dimension2df ScaleTo;
|
||||
|
Reference in New Issue
Block a user