mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-22 15:02:54 +08:00
Fix for MLO Instance rotations
This commit is contained in:
parent
4834b8c520
commit
96a561798c
@ -1489,15 +1489,22 @@ namespace CodeWalker.GameFiles
|
||||
}
|
||||
else
|
||||
{
|
||||
Quaternion inv = inverse ? ori : Quaternion.Normalize(Quaternion.Invert(ori));
|
||||
ori = inverse ? Quaternion.Normalize(Quaternion.Invert(ori)) : ori;
|
||||
Orientation = ori;
|
||||
_CEntityDef.rotation = inv.ToVector4();
|
||||
Orientation = inverse ? Quaternion.Normalize(Quaternion.Invert(ori)) : ori;
|
||||
if (MloInstance != null)
|
||||
{
|
||||
_CEntityDef.rotation = Orientation.ToVector4();
|
||||
}
|
||||
else
|
||||
{
|
||||
Quaternion inv = inverse ? ori : Quaternion.Normalize(Quaternion.Invert(ori));
|
||||
_CEntityDef.rotation = inv.ToVector4();
|
||||
}
|
||||
}
|
||||
|
||||
if (MloInstance != null)
|
||||
{
|
||||
MloInstance.SetOrientation(ori);
|
||||
MloInstance.UpdateEntities();
|
||||
}
|
||||
|
||||
if (Archetype != null)
|
||||
|
@ -408,7 +408,8 @@ namespace CodeWalker.Project.Panels
|
||||
}
|
||||
else
|
||||
{
|
||||
CurrentEntity.SetOrientation(q, true);
|
||||
bool useInverse = (CurrentEntity.MloInstance == null);
|
||||
CurrentEntity.SetOrientation(q, useInverse);
|
||||
}
|
||||
|
||||
ProjectItemChanged();
|
||||
|
Loading…
Reference in New Issue
Block a user