Newer
Older
DungeonShooting / DungeonShooting_Godot / editor / src / HintPanel.cs
@小李xl 小李xl on 23 Sep 2022 140 bytes 编辑器代码补全ui布局
using Godot;

public class HintPanel : Control
{
	public override void _Ready()
	{
		var pop = GetNode<Popup>("Popup");
		pop.Popup_();
	}
}