mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix get_bone_position() on unset bones modifying their position
closes #11840
This commit is contained in:
parent
ff934d538c
commit
d9d219356a
1 changed files with 5 additions and 2 deletions
|
@ -84,8 +84,11 @@ void UnitSAO::setBonePosition(const std::string &bone, v3f position, v3f rotatio
|
|||
|
||||
void UnitSAO::getBonePosition(const std::string &bone, v3f *position, v3f *rotation)
|
||||
{
|
||||
*position = m_bone_position[bone].X;
|
||||
*rotation = m_bone_position[bone].Y;
|
||||
auto it = m_bone_position.find(bone);
|
||||
if (it != m_bone_position.end()) {
|
||||
*position = it->second.X;
|
||||
*rotation = it->second.Y;
|
||||
}
|
||||
}
|
||||
|
||||
// clang-format off
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue