Give-LIFE-Cybers/Scripts/GL_Float.gd
2025-04-07 08:06:42 -06:00

11 lines
228 B
GDScript

extends GL_Node
func _ready():
_set_title("Float")
_create_row("Output",null,0.0,true,0.0,1)
pass
func _process(delta):
super._process(delta)
rows["Output"]["output"] = rows["Output"]["pickValue"]
_send_input("Output")