cirnogodot/addons/DebugGUI/Examples/debugGUI_examples.gd
2024-11-13 17:23:32 +01:00

9 lines
269 B
GDScript

extends Node
func _ready():
DebugGUI.SetGraphProperties(self, "from gdscript", 0.0, 10.0, 1, Color.WHITE, true)
DebugGUI.Log(self)
DebugGUI.Log("This can be done from gdscript too!")
func _process(_delta):
DebugGUI.Graph(self, sin(Time.get_ticks_msec() / 100.0))