VN Sizing

This commit is contained in:
MaddoScientisto 2025-03-17 23:16:22 +01:00
commit 656e95594f
13 changed files with 827 additions and 4 deletions

View file

@ -0,0 +1,13 @@
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()