체스 기물들 움직임 구현은 충분한 구상이 이루어진 다음에 짜야 할 것 같다. 괜히 먼저 짰다가 코드가 뒤죽박죽일 것 같으니 오늘은 간단하게 체스 Cell 마다 마우스가 올려져있을 때 색 변경 기능을 추가하였다. using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class Cell : MonoBehaviour { public Color Light { get; } = new Color(255 / 255f, 206 / 255f, 162 / 255f); public Color Dark { get; } = new Color(210 / 255f, 138 / 255f, 71 ..