mirror of https://github.com/OpenMW/openmw.git
Move NIF record index back to a separate user object
This makes sure it's never erroneously optimized out. NodeIndexHolders don't need to be cloned as their record index is never supposed to be changed.pull/2962/head
parent
f93655e803
commit
46825e8a4d
@ -0,0 +1,35 @@
|
||||
#ifndef OPENMW_COMPONENTS_NIFOSG_NODEINDEXHOLDER_H
|
||||
#define OPENMW_COMPONENTS_NIFOSG_NODEINDEXHOLDER_H
|
||||
|
||||
#include <osg/Object>
|
||||
|
||||
namespace NifOsg
|
||||
{
|
||||
|
||||
class NodeIndexHolder : public osg::Object
|
||||
{
|
||||
public:
|
||||
NodeIndexHolder() = default;
|
||||
NodeIndexHolder(int index)
|
||||
: mIndex(index)
|
||||
{
|
||||
}
|
||||
NodeIndexHolder(const NodeIndexHolder& copy, const osg::CopyOp& copyop)
|
||||
: Object(copy, copyop)
|
||||
, mIndex(copy.mIndex)
|
||||
{
|
||||
}
|
||||
|
||||
META_Object(NifOsg, NodeIndexHolder)
|
||||
|
||||
int getIndex() const { return mIndex; }
|
||||
|
||||
private:
|
||||
|
||||
// NIF record index
|
||||
int mIndex{0};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue