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

28 lines
470 B
C#

namespace MoleMole.Config
{
public class StaticHitBoxDetect : RectCollisionDetect
{
public enum HitBoxResetType
{
None = 0,
WithInside = 1,
WithoutInside = 2
}
public bool Enable = true;
public HitBoxResetType ResetType;
public float SizeRatio = 1f;
public float LengthRatio = 1f;
public bool UseOwnerCenterForRetreatDirection;
public StaticHitBoxDetect()
{
patternMethod = ComplexAttackPattern.StaticHitBoxDetectAttack;
}
}
}