Uploaded August 2021 | Updated September 2026, 9 hours ago
Dialogic Godot Tips and Tricks
This video is a follow up to my previous video Dialogic In depth tutorial: youtu.be/Co1B2Q3RDpA
--TimeStamps--
0:00 Intro
1:21 Option Conditions
1:56 IF Conditions
2:35 Pausing Tip
3:05 Dialog Timers
3:28 Important Export Settings
▶ Dialogic GitHub: github.com/coppolaemilio/dialogic
▶ Discord: discord.gg/xEBEm5JeCU
▶ Twitter: twitter.com/Chevifier
▶ Instagram: instagram.com/Chevifier
▶ Twitch: twitch.tv/chevifier
#Godot #Dialogic #Tutorial #Godotengine
Dialogic Godot Tips and Tricks
This video is a follow up to my previous video Dialogic In depth tutorial: youtu.be/Co1B2Q3RDpA
--TimeStamps--
0:00 Intro
1:21 Option Conditions
1:56 IF Conditions
2:35 Pausing Tip
3:05 Dialog Timers
3:28 Important Export Settings
▶ Dialogic GitHub: github.com/coppolaemilio/dialogic
▶ Discord: discord.gg/xEBEm5JeCU
▶ Twitter: twitter.com/Chevifier
▶ Instagram: instagram.com/Chevifier
▶ Twitch: twitch.tv/chevifier
#Godot #Dialogic #Tutorial #Godotengine







![Interactive Loading Screen Godot 4 Alpha Tutorial
Discord: https://discord.gg/xEBEm5JeCU
Twitter: https://twitter.com/Chevifier
Instagram: https://www.instagram.com/Chevifier/
Twitch: https://www.twitch.tv/chevifier
Code
extends Control
@export var scene:String = res://TestScene.tscn
@onready var progress_bar:ProgressBar = $ProgressBar
var progress = []
var scene_load_status = 0
func _ready():
ResourceLoader.load_threaded_request(scene)
func _process(delta):
scene_load_status = ResourceLoader.load_threaded_get_status(scene,progress)
progress_bar.value = progress[0] * 100
if scene_load_status ResourceLoader.THREAD_LOAD_LOADED:
$Continue_Button.visible = true
func _on_continue_button_pressed():
if scene_load_status ResourceLoader.THREAD_LOAD_LOADED:
get_tree().change_scene_to(ResourceLoader.load_threaded_get(scene))
queue_free()
else:
print(Scene not loaded or in progress)
#Godot4Tutorial #Godot4Alpha #Godot Interactive Loading Screen Godot 4 Alpha Tutorial](https://i.ytimg.com/vi/_aAr4-j7SI4/mqdefault.jpg)


