Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/Config/SkillEnterSteerOption.cs
2025-08-13 09:26:42 +08:00

24 lines
410 B
C#

namespace MoleMole.Config
{
public class SkillEnterSteerOption
{
public enum EnterSteerType
{
Instant = 0,
LimitSteerRatioAndNormalizedEnd = 1
}
public EnterSteerType SteerType;
public float MaxSteeringAngle = 180f;
public float SteerLerpRatio = 3f;
public float MaxSteerNormalizedTimeStart;
public float MaxSteerNormalizedTimeEnd = 0.5f;
public bool MuteSteerWhenNoEnemy;
}
}