1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 06:29:56 +00:00

Merge branch 'fiendfyre' into 'master'

Read a couple of Bethesda-specific controller records

See merge request OpenMW/openmw!3328
This commit is contained in:
Petr Mikheev 2023-08-12 09:14:28 +00:00
commit a8ed567177
2 changed files with 9 additions and 0 deletions

View file

@ -149,6 +149,12 @@ namespace Nif
{ "BSBlastNode", &construct<BSRangeNode, RC_NiNode> },
{ "BSDamageStage", &construct<BSRangeNode, RC_NiNode> },
{ "bhkBlendController", &construct<bhkBlendController, RC_bhkBlendController> },
{ "BSMaterialEmittanceMultController",
&construct<NiFloatInterpController, RC_BSMaterialEmittanceMultController> },
{ "BSRefractionFirePeriodController",
&construct<NiSingleInterpController, RC_BSRefractionFirePeriodController> },
{ "BSRefractionStrengthController",
&construct<NiFloatInterpController, RC_BSRefractionStrengthController> },
{ "NiFloatInterpolator", &construct<NiFloatInterpolator, RC_NiFloatInterpolator> },
{ "NiBoolInterpolator", &construct<NiBoolInterpolator, RC_NiBoolInterpolator> },
{ "NiBoolTimelineInterpolator", &construct<NiBoolInterpolator, RC_NiBoolTimelineInterpolator> },

View file

@ -118,6 +118,9 @@ namespace Nif
RC_BSXFlags,
RC_BSBound,
RC_bhkBlendController,
RC_BSMaterialEmittanceMultController,
RC_BSRefractionFirePeriodController,
RC_BSRefractionStrengthController,
RC_NiFloatInterpolator,
RC_NiPoint3Interpolator,
RC_NiBoolInterpolator,