UGCProjects/SoloKing/Script/gamemode/Action_PlayerRespawned.lua
2025-01-04 23:00:19 +08:00

20 lines
560 B
Lua
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

local Action_PlayerRespawn = {
RespawnPlayerKey = 0,
}
-- 触发器激活时将执行Action的Execute
function Action_PlayerRespawn:Execute(...)
UGCEventSystem.SendEvent(EventTypes.PlayerRespawn, self.RespawnPlayerKey);
table.func(MiniManager, "OnPlayerRespawn", self.RespawnPlayerKey)
return true
end
--[[
-- 需要勾选Action的EnableTick才会执行Update
-- 触发器激活后将在每个tick执行Action的Update直到self.bEnableActionTick为false
function Action_PlayerRespawn:Update(DeltaSeconds)
end
]]
return Action_PlayerRespawn