mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-14 01:45:54 +00:00
VN Sizing
This commit is contained in:
parent
6adf27c2ef
commit
656e95594f
13 changed files with 827 additions and 4 deletions
|
|
@ -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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue