11 lines
145 B
C#
11 lines
145 B
C#
|
using Godot;
|
||
|
using System;
|
||
|
|
||
|
public partial class ReadyDebug : Node
|
||
|
{
|
||
|
public override void _Ready()
|
||
|
{
|
||
|
GD.Print("该节点已准备好");
|
||
|
}
|
||
|
}
|