Added title screen and onboarding prompt
This commit is contained in:
parent
89c811473b
commit
d1c4c1a35d
7 changed files with 99 additions and 2 deletions
|
|
@ -163,3 +163,12 @@ func show_loss(message: String):
|
|||
$TargetZone.visible = false
|
||||
$AIFace.text = message
|
||||
flash(Color.RED)
|
||||
|
||||
func show_onboarding(msg: String):
|
||||
$AIFace.add_theme_font_size_override("font_size", 18)
|
||||
$AIFace.size = Vector2(size.x, 60)
|
||||
$AIFace.text = msg
|
||||
|
||||
func end_onboarding():
|
||||
$AIFace.add_theme_font_size_override("font_size", 32)
|
||||
$AIFace.size = Vector2(size.x, 30)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue