mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-23 06:41:08 +00:00
Merge branch 'spookyscaryskeletons' into 'master'
Prefer the earliest eponymous nodes in skeletons (bug #3842) Closes #3842 See merge request OpenMW/openmw!2762
This commit is contained in:
commit
d3eb10fd54
@ -1,6 +1,7 @@
|
||||
0.49.0
|
||||
------
|
||||
|
||||
Bug #3842: Body part skeletons override the main skeleton
|
||||
Bug #4127: Weapon animation looks choppy
|
||||
Bug #4204: Dead slaughterfish doesn't float to water surface after loading saved game
|
||||
Bug #4610: Casting a Bound Weapon spell cancels the casting animation by equipping the weapon prematurely
|
||||
|
@ -23,7 +23,7 @@ namespace SceneUtil
|
||||
void apply(osg::MatrixTransform& node) override
|
||||
{
|
||||
mPath.push_back(&node);
|
||||
mCache[Misc::StringUtils::lowerCase(node.getName())] = mPath;
|
||||
mCache.emplace(Misc::StringUtils::lowerCase(node.getName()), mPath);
|
||||
traverse(node);
|
||||
mPath.pop_back();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user