mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
30 lines
529 B
C#
30 lines
529 B
C#
namespace MoleMole.Config
|
|
{
|
|
public class ConfigMonsterSkill
|
|
{
|
|
public string[] AnimatorStateNames;
|
|
|
|
public string AnimatorEventPattern;
|
|
|
|
public float AnimDefenceRatio;
|
|
|
|
public float AnimDefenceNormalizedTimeStart;
|
|
|
|
public float AnimDefenceNormalizedTimeStop = 1f;
|
|
|
|
public float AttackNormalizedTimeStart;
|
|
|
|
public float AttackNormalizedTimeStop;
|
|
|
|
public bool HighSpeedMovement;
|
|
|
|
public bool SteerToTargetOnEnter;
|
|
|
|
public float MassRatio = 1f;
|
|
|
|
public bool NeedClearEffect;
|
|
|
|
public bool Unselectable;
|
|
}
|
|
}
|