Breakpoint

This commit is contained in:
CortexCore
2023-07-04 04:08:18 +08:00
parent 4af38a021c
commit d12e53739d
24 changed files with 1411 additions and 342 deletions

10
Temp/ReadyDebug.cs Normal file
View File

@@ -0,0 +1,10 @@
using Godot;
using System;
public partial class ReadyDebug : Node
{
public override void _Ready()
{
GD.Print("该节点已准备好");
}
}