public class PN_CommonAttack : ProcessNode
|
{
|
public PN_CommonAttack(GA_NpcClientFightNorm npc)
|
{
|
m_Target = npc;
|
}
|
|
public override void Init()
|
{
|
m_Target.lockCommonAtk = true;
|
#if UNITY_EDITOR
|
if (RuntimeLogUtility.s_LogProcessInfo)
|
{
|
UnityEngine.Debug.LogFormat("开始锁定普攻");
|
}
|
#endif
|
}
|
|
public override bool IsOver()
|
{
|
return true;
|
}
|
|
public override void UnInit()
|
{
|
}
|
|
public override void Update()
|
{
|
}
|
}
|