mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 17:04:45 +01:00
17 lines
349 B
C#
17 lines
349 B
C#
namespace MoleMole.Config
|
|
{
|
|
public class CylinderCollisionDetectTargetLocked : ConfigEntityAttackPattern
|
|
{
|
|
public float Radius;
|
|
|
|
public DynamicFloat RadiusRatio = DynamicFloat.ZERO;
|
|
|
|
public float Height;
|
|
|
|
public CylinderCollisionDetectTargetLocked()
|
|
{
|
|
patternMethod = AttackPattern.CylinderCollisionDetectTargetLockedAttack;
|
|
}
|
|
}
|
|
}
|