mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
27 lines
527 B
C#
27 lines
527 B
C#
namespace MoleMole.Config
|
|
{
|
|
public class TargetLockedAnimatedColliderDetect : ConfigEntityAttackPattern
|
|
{
|
|
public string ColliderEntryName;
|
|
|
|
public float MaxLockDistance;
|
|
|
|
public float ScatteringDistance;
|
|
|
|
public bool StopOnFirstContact;
|
|
|
|
public bool LockX;
|
|
|
|
public bool dontDestroyWhenEvade;
|
|
|
|
public bool DestroyOnOwnerBeHitCanceled;
|
|
|
|
public bool brokenEnemyDragged;
|
|
|
|
public TargetLockedAnimatedColliderDetect()
|
|
{
|
|
patternMethod = ComplexAttackPattern.TargetLockedAnimatedColliderDetectAttack;
|
|
}
|
|
}
|
|
}
|