mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-03 09:06:40 +00:00
Read NiGravity fields
This commit is contained in:
parent
3768e04a0c
commit
c6c67a1bb4
1 changed files with 13 additions and 2 deletions
|
@ -98,12 +98,23 @@ public:
|
||||||
class NiGravity : public Controlled
|
class NiGravity : public Controlled
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
float mForce;
|
||||||
|
/* 0 - Wind (fixed direction)
|
||||||
|
* 1 - Point (fixed origin)
|
||||||
|
*/
|
||||||
|
int mType;
|
||||||
|
Ogre::Vector3 mPosition;
|
||||||
|
Ogre::Vector3 mDirection;
|
||||||
|
|
||||||
void read(NIFStream *nif)
|
void read(NIFStream *nif)
|
||||||
{
|
{
|
||||||
Controlled::read(nif);
|
Controlled::read(nif);
|
||||||
|
|
||||||
// two floats, one int, six floats
|
/*unknown*/nif->getFloat();
|
||||||
nif->skip(9*4);
|
mForce = nif->getFloat();
|
||||||
|
mType = nif->getUInt();
|
||||||
|
mPosition = nif->getVector3();
|
||||||
|
mDirection = nif->getVector3();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue