외부 프로젝트 의존 테스트
This commit is contained in:
13
Sources/GodotProject/LabelTest.cs
Normal file
13
Sources/GodotProject/LabelTest.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Godot;
|
||||
|
||||
public partial class LabelTest : Label
|
||||
{
|
||||
|
||||
public override void _Input(InputEvent @event)
|
||||
{
|
||||
if (@event is InputEventKey eventKey && eventKey.Pressed && eventKey.Keycode == Key.Space)
|
||||
{
|
||||
Text = SampleLib.SampleClass.SuperSampleString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user