mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-06 10:20:41 +01:00
ffd7b63af0
C++ has undefined behavior for identifiers starting with __ or with _ followed by an uppercase letter. We still have many more (in IrrCompileConfig.h and in all header-guards), will likely replace those later as well. As a workaround for users which might use irrlicht defines in their code, I've added the header irrLegacyDefines.h Including that allows to continue using old defines for a while - or make it easier to have code which compiles with old and new Irrlicht library versions. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6251 dfc29bdd-3216-0410-991c-e03cc46cb475
49 lines
1.6 KiB
C++
49 lines
1.6 KiB
C++
// Copyright (C) 2010-2012 Nikolaus Gebhardt
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
#ifndef C_PARTICLE_SCALE_AFFECTOR_H
|
|
#define C_PARTICLE_SCALE_AFFECTOR_H
|
|
|
|
#include "IrrCompileConfig.h"
|
|
#ifdef _IRR_COMPILE_WITH_PARTICLES_
|
|
|
|
#include "IParticleAffector.h"
|
|
|
|
namespace irr
|
|
{
|
|
namespace scene
|
|
{
|
|
class CParticleScaleAffector : public IParticleAffector
|
|
{
|
|
public:
|
|
CParticleScaleAffector(const core::dimension2df& scaleTo = core::dimension2df(1.0f, 1.0f));
|
|
|
|
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;
|
|
|
|
//! 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;
|
|
|
|
//! Get emitter type
|
|
virtual E_PARTICLE_AFFECTOR_TYPE getType() const IRR_OVERRIDE;
|
|
|
|
protected:
|
|
core::dimension2df ScaleTo;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // _IRR_COMPILE_WITH_PARTICLES_
|
|
|
|
#endif // C_PARTICLE_SCALE_AFFECTOR_H
|
|
|