mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
13 lines
274 B
GDScript
13 lines
274 B
GDScript
extends Range
|
|
|
|
var enabled: bool = true
|
|
|
|
func _process(_delta : float) -> void:
|
|
if !enabled:
|
|
hide()
|
|
return
|
|
if DialogicUtil.autoload().Inputs.auto_advance.get_progress() < 0:
|
|
hide()
|
|
else:
|
|
show()
|
|
value = DialogicUtil.autoload().Inputs.auto_advance.get_progress()
|