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