mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
24 lines
410 B
C#
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;
|
|
}
|
|
}
|