mirror of
https://github.com/lucky-sideburn/kubeinvaders.git
synced 2026-08-22 21:16:31 +00:00
38 lines
957 B
Plaintext
38 lines
957 B
Plaintext
function init(self)
|
|
|
|
end
|
|
|
|
function final(self)
|
|
-- Add finalization code here
|
|
-- Remove this function if not needed
|
|
end
|
|
|
|
function update(self, dt)
|
|
-- Add update code here
|
|
-- Remove this function if not needed
|
|
end
|
|
|
|
function on_message(self, message_id, message, sender)
|
|
if message_id == hash("hello_gui") then
|
|
gui.set_text(gui.get_node("status"), "Running pods: " .. message.pod_running)
|
|
elseif message_id == hash("howto") then
|
|
gui.set_text(gui.get_node("howto"), message.howto_message)
|
|
elseif message_id == hash("info") then
|
|
gui.set_text(gui.get_node("info"), message.infomessage)
|
|
elseif message_id == hash("error") then
|
|
gui.set_text(gui.get_node("error"), message.errormessage)
|
|
elseif message_id == hash("mode") then
|
|
gui.set_text(gui.get_node("mode"), message.mode)
|
|
end
|
|
end
|
|
|
|
|
|
function on_input(self, action_id, action)
|
|
|
|
end
|
|
|
|
function on_reload(self)
|
|
-- Add input-handling code here
|
|
-- Remove this function if not needed
|
|
end
|