You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In editor all placed character turn their head to left. In BP class, or if put only SK on level- the character looks straight ahead
To Reproduce
Place ALS character on level
See error
Screenshots and Videos
How to fix
In
UALSCharacterAnimInstance::NativeUpdateAnimation
Return this condition if (!Character || DeltaSeconds == 0.0f)
and remove second if (DeltaSeconds == 0.0f)
or
Add RotationMode = EALSRotationMode::VelocityDirection; to if (DeltaSeconds == 0.0f)
The text was updated successfully, but these errors were encountered:
Describe the bug
In editor all placed character turn their head to left. In BP class, or if put only SK on level- the character looks straight ahead
To Reproduce
Screenshots and Videos
How to fix
In
Return this condition
if (!Character || DeltaSeconds == 0.0f)
and remove second
if (DeltaSeconds == 0.0f)
or
Add
RotationMode = EALSRotationMode::VelocityDirection;
toif (DeltaSeconds == 0.0f)
The text was updated successfully, but these errors were encountered: