Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 644 Bytes

File metadata and controls

16 lines (13 loc) · 644 Bytes

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