improved Twitch connection menu experience

This commit is contained in:
2024-04-23 05:46:39 -05:00
parent d3beca8014
commit 8e01e9cb9b
10 changed files with 220 additions and 80 deletions

17
ConfigMarginContainer.cs Normal file
View File

@@ -0,0 +1,17 @@
using Godot;
using System;
public partial class ConfigMarginContainer : MarginContainer
{
public readonly string Title = "Config";
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
GetParentOrNull<TabContainer>().SetTabTitle(GetIndex(), Title);
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
}
}