1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-25 03:40:40 +00:00

Read a couple of Bethesda-specific controller records

BSMaterialEmittanceMultController
BSRefractionFirePeriodController
BSRefractionStrengthController
This commit is contained in:
Alexei Dobrohotov 2023-08-10 01:50:16 +03:00
parent 84e71f4977
commit de50f30645
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,