한글 폰트 TextMeshPro 파일 생성 및 추가

- 폰트 갈부리9
This commit is contained in:
김민구
2026-07-01 18:22:16 +09:00
parent 849d2178e6
commit f0abd39c3e
451 changed files with 3183115 additions and 0 deletions
@@ -0,0 +1,19 @@
using TMPro;
using UnityEngine;
public class DropdownSample: MonoBehaviour
{
[SerializeField]
private TextMeshProUGUI text = null;
[SerializeField]
private TMP_Dropdown dropdownWithoutPlaceholder = null;
[SerializeField]
private TMP_Dropdown dropdownWithPlaceholder = null;
public void OnButtonClick()
{
text.text = dropdownWithPlaceholder.value > -1 ? "Selected values:\n" + dropdownWithoutPlaceholder.value + " - " + dropdownWithPlaceholder.value : "Error: Please make a selection";
}
}