1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-03 16:49:54 +00:00

OSG extensions namespace fixes

This commit is contained in:
scrawl 2015-12-06 15:27:43 +01:00
parent 03a0b1fbfd
commit e39f49a88f
4 changed files with 5 additions and 5 deletions

View file

@ -30,7 +30,7 @@ namespace NifOsg
ParticleSystem();
ParticleSystem(const ParticleSystem& copy, const osg::CopyOp& copyop);
META_Object(NifOsg, NifOsg::ParticleSystem)
META_Object(NifOsg, ParticleSystem)
virtual osgParticle::Particle* createParticle(const osgParticle::Particle *ptemplate);
@ -194,7 +194,7 @@ namespace NifOsg
Emitter();
Emitter(const Emitter& copy, const osg::CopyOp& copyop);
META_Object(NifOsg, NifOsg::Emitter)
META_Object(NifOsg, Emitter)
virtual void emitParticles(double dt);

View file

@ -158,7 +158,7 @@ namespace SceneUtil
, mLastFrameNumber(0)
{}
META_Object(NifOsg, LightListCallback)
META_Object(SceneUtil, LightListCallback)
void operator()(osg::Node* node, osg::NodeVisitor* nv);

View file

@ -19,7 +19,7 @@ namespace SceneUtil
RigGeometry();
RigGeometry(const RigGeometry& copy, const osg::CopyOp& copyop);
META_Object(NifOsg, RigGeometry)
META_Object(SceneUtil, RigGeometry)
struct BoneInfluence
{

View file

@ -39,7 +39,7 @@ namespace SceneUtil
Skeleton();
Skeleton(const Skeleton& copy, const osg::CopyOp& copyop);
META_Node(NifOsg, Skeleton)
META_Node(SceneUtil, Skeleton)
/// Retrieve a bone by name.
Bone* getBone(const std::string& name);