1
This commit is contained in:
parent
863b860f79
commit
a076a7fdab
@ -93,6 +93,11 @@ void CallFuncBuff::Activate()
|
|||||||
ProcFlashMoveToPos();
|
ProcFlashMoveToPos();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case BuffCallFunc_e::kLightCircle:
|
||||||
|
{
|
||||||
|
ProcLightCircle();
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@ -286,3 +291,8 @@ void CallFuncBuff::ProcFlashMoveToPos()
|
|||||||
Global::Instance()->verify_set_pos = 0;
|
Global::Instance()->verify_set_pos = 0;
|
||||||
owner->room->grid_service->MoveCreature(owner);
|
owner->room->grid_service->MoveCreature(owner);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CallFuncBuff::ProcLightCircle()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -15,6 +15,7 @@ A8_DECLARE_CLASS_ENUM(BuffCallFunc_e, int,
|
|||||||
kAddEnergyShield = 10,
|
kAddEnergyShield = 10,
|
||||||
kAddHp = 11,
|
kAddHp = 11,
|
||||||
kFlashMoveToPos = 12,
|
kFlashMoveToPos = 12,
|
||||||
|
kLightCircle = 13
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
@ -34,6 +35,7 @@ class CallFuncBuff : public Buff
|
|||||||
void ProcAddEnergyShield();
|
void ProcAddEnergyShield();
|
||||||
void ProcAddHp();
|
void ProcAddHp();
|
||||||
void ProcFlashMoveToPos();
|
void ProcFlashMoveToPos();
|
||||||
|
void ProcLightCircle();
|
||||||
|
|
||||||
float hold_param2_ = 0.0;
|
float hold_param2_ = 0.0;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user