mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-16 02:13:46 +00:00
3D Cameras with sweep and animation
This commit is contained in:
parent
4cc7a0c004
commit
7e76edc153
48 changed files with 3211 additions and 1511 deletions
|
|
@ -0,0 +1,10 @@
|
|||
extends Label
|
||||
|
||||
@export var range_control : Range
|
||||
|
||||
func _ready():
|
||||
range_control.value_changed.connect(_set_displayed_value)
|
||||
_set_displayed_value(range_control.value)
|
||||
|
||||
func _set_displayed_value(_value: float):
|
||||
text = str(_value)
|
||||
|
|
@ -0,0 +1 @@
|
|||
uid://be67a8jv24c5o
|
||||
Loading…
Add table
Add a link
Reference in a new issue