12 lines
293 B
GDScript3
12 lines
293 B
GDScript3
|
# Copyright © 2022 Kasper Arnklit Frandsen - MIT License
|
||
|
# See `LICENSE.md` included in the source distribution for details.
|
||
|
@tool
|
||
|
extends Window
|
||
|
|
||
|
@onready var _progress_bar = $ProgressBar
|
||
|
|
||
|
|
||
|
func show_progress(message, progress) -> void:
|
||
|
self.title = message
|
||
|
_progress_bar.ratio = progress
|