Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions Nautilus/Utility/BasicText.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public BasicText()
CloneFont = true;
CloneStyle = true;
CloneMaterial = true;
InitializeText();
}

/// <summary>
Expand Down Expand Up @@ -201,12 +202,6 @@ public void ShowMessage(string s)
/// <param name="seconds">The duration to hold before fading</param>
public void ShowMessage(string s, float seconds)
{
if (TextObject == null)
{
// First time only, initialize the object and components
InitializeText();
}

// Set our actual text
TextFade.SetText(s);

Expand Down