/UnityWindowTitleChanger

This Unity Asset allows you to change the window title of a game. This can be useful for window context when the game is minimized or to see status changes in the Window title, for example a new message or a new resource have spawned. This is useful for Breadcrumbs.

Primary LanguageC#Mozilla Public License 2.0MPL-2.0

WindowTitleChanger

This Unity Asset provides an easy and efficient way to dynamically change the window title of your Unity game when running on Windows. Whether you need to provide additional context to your players when the game window is minimized, indicate new in-game messages, or update resource spawn information, this asset has you covered.

using UnityEngine;

public class ExampleUsage : MonoBehaviour
{
    void Start()
    {
        WindowTitleChanger.Instance.ChangeTitle("New Game Title");
    }
}

WindowTitleChanger