12 lines
256 B
GDScript
12 lines
256 B
GDScript
extends GL_Node
|
|
|
|
func _ready():
|
|
super._ready()
|
|
_set_title("Float")
|
|
_create_row("Output",null,0.0,true,0.0,1)
|
|
_update_visuals()
|
|
|
|
func _process(delta):
|
|
super._process(delta)
|
|
rows["Output"]["output"] = rows["Output"]["pickValue"]
|
|
_send_input("Output")
|