mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
Debug addon and removed old scaling
This commit is contained in:
parent
ed502eb061
commit
ca85765ca2
16 changed files with 1637 additions and 11 deletions
9
addons/DebugGUI/Examples/debugGUI_examples.gd
Normal file
9
addons/DebugGUI/Examples/debugGUI_examples.gd
Normal 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))
|
||||
Loading…
Add table
Add a link
Reference in a new issue