Debug addon and removed old scaling

This commit is contained in:
Marco 2024-11-13 17:23:32 +01:00
commit ca85765ca2
16 changed files with 1637 additions and 11 deletions

View file

@ -0,0 +1,9 @@
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))