SCED/src/core/VictoryDisplayApi.ttslua

21 lines
649 B
Plaintext
Raw Normal View History

2023-06-14 22:17:55 +02:00
do
local VictoryDisplayApi = {}
local VD_GUID = "6ccd6d"
-- triggers an update of the Victory count
---@param delay Number Delay in seconds after which the update call is executed
VictoryDisplayApi.update = function(delay)
getObjectFromGUID(VD_GUID).call("startUpdate", delay)
end
2023-06-15 23:18:17 +02:00
-- moves a card to the victory display (in the first empty spot)
---@param object Object Object that should be checked and potentially moved
VictoryDisplayApi.placeCard = function(object)
if object ~= nil and object.tag == "Card" then
getObjectFromGUID(VD_GUID).call("placeCard", object)
end
end
2023-06-14 22:17:55 +02:00
return VictoryDisplayApi
end