mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
13 lines
179 B
GDScript
13 lines
179 B
GDScript
tool
|
|
extends HSlider
|
|
|
|
func _ready() -> void:
|
|
update_label(value)
|
|
|
|
func set_value(v) -> void:
|
|
.set_value(v)
|
|
update_label(v)
|
|
|
|
func update_label(v) -> void:
|
|
$Label.text = str(v)
|