Skip to content
Snippets Groups Projects
Commit 4ad2d0a0 authored by Alecu100's avatar Alecu100
Browse files

added support for skyrim properties

parent 77a207f0
No related branches found
No related tags found
No related merge requests found
......@@ -130,6 +130,18 @@ public:
*/
NIFLIB_API list< Ref<NiTimeController> > GetControllers() const;
/*!
* Gets the skyrim shader type
* \return The skyrim shader flag value
*/
NIFLIB_API unsigned int GetSkyrimShaderType();
/*!
* Set the skyrim shader type
* \param[in] The new skyrim shader value
*/
NIFLIB_API void SetSkyrimShaderType(unsigned int value);
//--END CUSTOM CODE--//
protected:
/*!
......
......@@ -405,4 +405,14 @@ list< Ref<NiTimeController> > NiObjectNET::GetControllers() const {
return conts;
}
unsigned int NiObjectNET::GetSkyrimShaderType() {
return skyrimShaderType;
}
void NiObjectNET::SetSkyrimShaderType( unsigned int value ) {
skyrimShaderType = value;
}
//--END CUSTOM CODE--//
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment