2026-04-24 커뮤니케이션 시스템

This commit is contained in:
2026-04-24 14:14:04 +09:00
parent 14b4b47cd4
commit 3ea92ba3f9
23 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using UnityEngine;
[CreateAssetMenu(menuName = "Communication/VoiceClip")]
public class VoiceClip : ScriptableObject
{
public string VoiceCode; //해당 음성 고유코드
public AudioClip Clip;
}