usingUnityEngine;usingTankAndHealerStudioAssets;publicclassChatBoxExample:MonoBehaviour{ // BE SURE TO ASSIGN THIS IN THE INSPECTOR //publicUltimateChatBox chatBox; // YOU CAN EDIT THIS INFORMATION IN THE INSPECTOR //publicUltimateChatBox.ChatStyle customStyle =newUltimateChatBox.ChatStyle() { usernameBold =true, usernameItalic =false, usernameUnderlined =false, usernameColor =Color.red, disableInteraction =false, noUsernameFollowupText =false, messageBold =true, messageItalic =true, messageUnderlined =true, messageColor =Color.red, };voidStart () {chatBox.RegisterChat( "PlayerName","This message is in my custom style!", customStyle ); }}