대화구조 수정

This commit is contained in:
2026-07-30 13:20:13 +09:00
parent 2413483853
commit 519e351fa5
15 changed files with 778 additions and 17 deletions

View File

@@ -24,6 +24,17 @@ public class TypewriterStyle : ScriptableObject
public Color TextColor = Color.white;
[Header("Emphasis")]
[Tooltip("대사에 [[강조]] ")]
public Color EmphasisColor = new Color(1f, 0.23f, 0.19f);
[Tooltip("강조 단어가 밝아지며 맥동하는 세기. 0이면 맥동 없이 색만 바뀐다 " +
"(0이면 매 프레임 다시 그리지 않으므로 비용도 없다)")]
[Range(0f, 1f)] public float GlowStrength = 0.45f;
[Tooltip("맥동 속도 (초당 왕복 횟수)")]
[Min(0.01f)] public float GlowSpeed = 1.5f;
[Header("Sound")]
[Tooltip("타이핑되는 동안 루프로 재생할 사운드. 비우면 무음. " +
"글자마다 개별 재생이 아니라, 타이핑이 끝나거나 스킵되면 멈춘다")]