mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 21:49:55 +00:00
Do not skip inactive keyframe controllers (Bug #1942)
This commit is contained in:
parent
2329812988
commit
2a987b6857
1 changed files with 2 additions and 2 deletions
|
@ -321,8 +321,8 @@ namespace NifOsg
|
|||
continue;
|
||||
}
|
||||
|
||||
if (!(ctrl->flags & Nif::NiNode::ControllerFlag_Active))
|
||||
continue;
|
||||
// Vanilla seems to ignore the "active" flag for NiKeyframeController,
|
||||
// so we don't want to skip inactive controllers here.
|
||||
|
||||
const Nif::NiStringExtraData *strdata = static_cast<const Nif::NiStringExtraData*>(extra.getPtr());
|
||||
const Nif::NiKeyframeController *key = static_cast<const Nif::NiKeyframeController*>(ctrl.getPtr());
|
||||
|
|
Loading…
Reference in a new issue