using Godot; using System; namespace SupaLidlGame.UI { public partial class FloatingText : Node2D { private Label _label; [Export] public string Text { get; set; } public override void _Ready() { _label = GetNode