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

public class HintItem : Button
{
	
	
	
	//点击时调用
	private void _on_click()
	{
		GD.Print("点击按钮");
	}
}