온라인 구현

This commit is contained in:
김도환
2026-05-01 05:47:12 +09:00
parent 5695b4036f
commit a36270f77a
996 changed files with 267058 additions and 75 deletions

View File

@@ -0,0 +1,18 @@
using TMPro;
using UnityEngine;
public class TextColorManager : MonoBehaviour
{
private TextMeshProUGUI _text;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
_text = GetComponent<TextMeshProUGUI>();
}
// Update is called once per frame
void Update()
{
_text.color = Color.HSVToRGB(Mathf.PingPong(Time.time, 1f), 1f, 1f);
}
}