1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-07 01:11:32 +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> }, { "BSBlastNode", &construct<BSRangeNode, RC_NiNode> },
{ "BSDamageStage", &construct<BSRangeNode, RC_NiNode> }, { "BSDamageStage", &construct<BSRangeNode, RC_NiNode> },
{ "bhkBlendController", &construct<bhkBlendController, RC_bhkBlendController> }, { "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> }, { "NiFloatInterpolator", &construct<NiFloatInterpolator, RC_NiFloatInterpolator> },
{ "NiBoolInterpolator", &construct<NiBoolInterpolator, RC_NiBoolInterpolator> }, { "NiBoolInterpolator", &construct<NiBoolInterpolator, RC_NiBoolInterpolator> },
{ "NiBoolTimelineInterpolator", &construct<NiBoolInterpolator, RC_NiBoolTimelineInterpolator> }, { "NiBoolTimelineInterpolator", &construct<NiBoolInterpolator, RC_NiBoolTimelineInterpolator> },

View file

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