Added tooltips for all nodes, began record node
This commit is contained in:
parent
ddfa591400
commit
9a5b9e6601
14 changed files with 41 additions and 0 deletions
12
Scripts/GL_Record.gd
Normal file
12
Scripts/GL_Record.gd
Normal 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
1
Scripts/GL_Record.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://cwnen4mit8x6n
|
|
@ -11,6 +11,7 @@ var rows : Dictionary = {
|
|||
"Mix Colors":1,
|
||||
"Lerp":1,
|
||||
"Mouse Wheel":1,
|
||||
"Record":1,
|
||||
}
|
||||
var searching : bool
|
||||
var lastMousePos : Vector2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue