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