Premium Only Content
Button GUI with Scene Transition #defold
Creating a Button for any GUI in Defold plus adding some functionality with switching to a new scene.
As promised: Code for each script used in video
----------Code Snippet----------
loader.script
local function show(self, proxy)
if self.current_proxy then
msg.post(self.current_proxy, "unload")
self.current_proxy = nil
end
msg.post(proxy, "async_load")
end
function init(self)
msg.post(".", "acquire_input_focus")
self.current_proxy = nil
msg.post("#", "show_game_over")
end
function on_message(self, message_id, message, sender)
if message_id == hash("show_game_over") then
show(self, "#game_over")
elseif message_id == hash("show_main") then
show(self, "#main")
elseif message_id == hash("proxy_loaded") then
self.current_proxy = sender
msg.post(sender, "enable")
end
end
~loader.script
game_over.gui_script
function init(self)
msg.post(".", "acquire_input_focus")
end
function on_input(self, action_id, action)
if action_id == hash("touch") and action.pressed then
local button = gui.get_node("button")
if gui.pick_node(button, action.x, action.y) then
msg.post("00000:/loader#loader", "show_main")
print("button clicked!")
end
end
end
~game_over.gui_script
-----------Code Snippet----------
--
Subscribe to the Channel for more content, Like the video, Share the video, and Comment suggestions or to show your support!!!
Provide Thoughts on the channel and join the email list - https://bit.ly/3hG99wP
Check out my Social Media to reach out to me!
Twitter - https://twitter.com/vigmu2
Discord - https://discord.gg/AYEAK5RmFR
To check out my Podcast - https://anchor.fm/vigmu2-games
New shows uploaded every Friday at 8AM (until further notice)
If you would like to donate for my current work and for further content! You can donate here -- https://bit.ly/3ea8q3u
-
LIVE
Dr Disrespect
2 hours ago🔴LIVE - DR DISRESPECT - ARC RAIDERS - FULL SEND INTO THE RED
1,686 watching -
1:50:43
Tucker Carlson
10 minutes agoChris Williamson’s Advice to Men: How to Survive a World of OnlyFans and AI Girlfriends
2 -
Timcast
1 hour agoBomb DETONATED At Harvard, Attacks On Ice Agents SKYROCKET
47K34 -
1:55:31
Steven Crowder
3 hours agoTucker Carlson & MAGA: Everyone is Missing the Point
235K203 -
1:11:22
The Rubin Report
2 hours agoWatch Joe Rogan’s Face as Elon Musk Exposes How Dems Are Cheating in Plain Sight
23.4K38 -
1:01:07
VINCE
4 hours agoThe Walls Are Closing In On The Deep State | Episode 160 - 11/03/25
183K129 -
LIVE
LFA TV
19 hours agoLIVE & BREAKING NEWS! | MONDAY 11/3/25
3,105 watching -
1:31:18
Graham Allen
4 hours agoErika Fights Back: Vows To EXPOSE TRUTH & DEMANDS Trial Goes Public!! Left Says Her Grief Is FAKE!
130K79 -
2:08:47
Badlands Media
9 hours agoBadlands Daily: November 3, 2025 – Tariff Wars, SNAP Panic & Brennan Gets Confronted
53.9K14 -
2:59:32
Wendy Bell Radio
8 hours agoThings Will Get Worse Before They Get Better
78K97