Files
zfxaction26_1/godot/scripts/menu/MenuPlaceholder.cs
2026-04-21 18:54:38 +02:00

23 lines
508 B
C#

#nullable enable
using Godot;
namespace SideScrollerGame.Menu;
public partial class MenuPlaceholder : Control
{
public override void _Ready()
{
Label? title = GetNodeOrNull<Label>("Title");
if (title is not null)
{
title.Text = "SideScrollerGame - Menu Placeholder";
}
Label? hint = GetNodeOrNull<Label>("Hint");
if (hint is not null)
{
hint.Text = "Run with -- --debug-boot=smoke for smoke scene";
}
}
}