Skip to content
Snippets Groups Projects
Commit 1444629e authored by BlackAngle233's avatar BlackAngle233
Browse files

12.22 update UI

the font assets is too large, so not be pushed
parent c4fc982a
No related merge requests found
Showing
with 2956 additions and 0 deletions
This diff is collapsed.
This diff is collapsed.
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using TMPro;
public class ChatController : MonoBehaviour {
public TMP_InputField TMP_ChatInput;
public TMP_Text TMP_ChatOutput;
public Scrollbar ChatScrollbar;
void OnEnable()
{
TMP_ChatInput.onSubmit.AddListener(AddToChatOutput);
}
void OnDisable()
{
TMP_ChatInput.onSubmit.RemoveListener(AddToChatOutput);
}
void AddToChatOutput(string newText)
{
// Clear Input Field
TMP_ChatInput.text = string.Empty;
var timeNow = System.DateTime.Now;
TMP_ChatOutput.text += "[<#FFFF80>" + timeNow.Hour.ToString("d2") + ":" + timeNow.Minute.ToString("d2") + ":" + timeNow.Second.ToString("d2") + "</color>] " + newText + "\n";
TMP_ChatInput.ActivateInputField();
// Set the scrollbar to the bottom when next text is submitted.
ChatScrollbar.value = 0;
}
}
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment