Give-LIFE-Cybers/Scripts/GL_Float.gd
2025-04-08 04:30:16 -06:00

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")