pruned scripts

This commit is contained in:
Jojackman1
2026-01-19 09:52:06 -07:00
parent 5f2df9568d
commit 9e0eed66c3
10 changed files with 399 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using Godot;
using System;
using System.Collections.Generic;
public partial class TipManager : RichTextLabel
{
string[] TipList =
{
"Example Tip 1",
"Example Tip 2",
"Example Tip 3"
};
public override void _Ready()
{
// Get random tip and change the text to that
GD.Randomize();
Text = TipList[GD.Randi() % TipList.Length];
}
}