diff --git a/include/obj/NiObject.h b/include/obj/NiObject.h index 09bccad5c4946b6f8e69afc73b3cb5032907d6e2..f18fd59dd1eaf18de7209f279bc3eb624c0619c3 100644 --- a/include/obj/NiObject.h +++ b/include/obj/NiObject.h @@ -88,6 +88,10 @@ public: NIFLIB_HIDDEN virtual void FixLinks( const map<unsigned int,NiObjectRef> & objects, list<unsigned int> & link_stack, const NifInfo & info ); /*! NIFLIB_HIDDEN function. For internal use only. */ NIFLIB_HIDDEN virtual list<NiObjectRef> GetRefs() const; + + /*! Block number in the nif file. Only set when you read + blocks from the file. */ + int internal_block_number; }; //--BEGIN FILE FOOT CUSTOM CODE--// diff --git a/src/niflib.cpp b/src/niflib.cpp index 08732582c71b1a733383b4195c59ac7233d9190e..ed6393adf16859c6861d453f830c4abbd3f65b32 100644 --- a/src/niflib.cpp +++ b/src/niflib.cpp @@ -318,6 +318,9 @@ vector<NiObjectRef> ReadNifList( istream & in, NifInfo * info ) { //Add object to list obj_list.push_back(new_obj); + //Store block number + new_obj->internal_block_number = index; + // Ending position of block in stream std::streampos endobjpos = in.tellg();