This commit is contained in:
aozhiwei 2023-03-14 16:55:35 +08:00
parent 863b860f79
commit a076a7fdab
2 changed files with 12 additions and 0 deletions

View File

@ -93,6 +93,11 @@ void CallFuncBuff::Activate()
ProcFlashMoveToPos();
}
break;
case BuffCallFunc_e::kLightCircle:
{
ProcLightCircle();
}
break;
default:
{
}
@ -286,3 +291,8 @@ void CallFuncBuff::ProcFlashMoveToPos()
Global::Instance()->verify_set_pos = 0;
owner->room->grid_service->MoveCreature(owner);
}
void CallFuncBuff::ProcLightCircle()
{
}

View File

@ -15,6 +15,7 @@ A8_DECLARE_CLASS_ENUM(BuffCallFunc_e, int,
kAddEnergyShield = 10,
kAddHp = 11,
kFlashMoveToPos = 12,
kLightCircle = 13
);
@ -34,6 +35,7 @@ class CallFuncBuff : public Buff
void ProcAddEnergyShield();
void ProcAddHp();
void ProcFlashMoveToPos();
void ProcLightCircle();
float hold_param2_ = 0.0;
};