Fix camera eye rotations (#11034)

This commit is contained in:
metalgearsloth
2022-09-05 16:19:14 +10:00
committed by GitHub
parent c55a015b77
commit e81a467f87

View File

@@ -125,7 +125,7 @@ public sealed class EyeLerpingSystem : EntitySystem
if (xformQuery.TryGetComponent(relative, out var relativeXform))
{
return relativeXform.WorldRotation;
return -relativeXform.WorldRotation;
}
}