FMOD.Factory.System_Create(out sys);
sys.init(512, FMOD.INITFLAGS.NORMAL, IntPtr.Zero);
FMOD.Sound snd;
sys.createSound(Application.dataPath + "유니티파일경로", FMOD.MODE.CREATESAMPLE, out snd);
FMOD.ChannelGroup cg;
sys.createChannelGroup("ch", out cg);
sys.playSound(snd,cg,false,out ch);
'프로그래밍' 카테고리의 다른 글
4. Exception을 지양하는 이유가 뭘까? (1) | 2020.05.20 |
---|---|
3. C와 Call by Reference (0) | 2020.04.09 |
[Unity] PlayerPrefs를 빌드 파일에서 지워보자 (0) | 2020.02.26 |
2. 사람들은 왜 동적 타이핑을 싫어할까? (0) | 2019.06.19 |
1. 프로그래밍 언어와 구조적 프로그래밍 (0) | 2019.06.05 |