mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-03 17:49:41 +00:00
OSG extensions namespace fixes
This commit is contained in:
parent
03a0b1fbfd
commit
e39f49a88f
4 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -158,7 +158,7 @@ namespace SceneUtil
|
|||
, mLastFrameNumber(0)
|
||||
{}
|
||||
|
||||
META_Object(NifOsg, LightListCallback)
|
||||
META_Object(SceneUtil, LightListCallback)
|
||||
|
||||
void operator()(osg::Node* node, osg::NodeVisitor* nv);
|
||||
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue