You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

44 lines
951 B

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;
}
}