Added tooltips for all nodes, began record node

This commit is contained in:
The 64th Gamer 2025-04-08 03:16:50 -06:00
parent ddfa591400
commit 9a5b9e6601
14 changed files with 41 additions and 0 deletions

12
Scripts/GL_Record.gd Normal file
View file

@ -0,0 +1,12 @@
extends GL_Node
func _ready():
_set_title("Record")
_create_row("Recording",false,null,true,false,0)
_create_row("Current Time",0.0,null,false,0,0)
pass
func _process(delta):
super._process(delta)
#rows["Output"]["output"] = rows["Output"]["pickValue"]
#_send_input("Output")

1
Scripts/GL_Record.gd.uid Normal file
View file

@ -0,0 +1 @@
uid://cwnen4mit8x6n

View file

@ -11,6 +11,7 @@ var rows : Dictionary = {
"Mix Colors":1,
"Lerp":1,
"Mouse Wheel":1,
"Record":1,
}
var searching : bool
var lastMousePos : Vector2