반응형
250x250
Notice
Recent Posts
Recent Comments
Link
«   2024/03   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
Archives
Today
Total
관리 메뉴

가끔 보자, 하늘.

StreamingAssets 읽기 경로 지정 본문

개발 이야기/개발툴 및 기타 이야기

StreamingAssets 읽기 경로 지정

가온아 2016. 11. 22. 09:12

https://docs.unity3d.com/540/Documentation/Manual/StreamingAssets.html


여기에 iOS의 경로를 아래와 같이 지정하라고 기록되어 있다. 


On iOS, use:

 path = Application.dataPath + "/Raw";


이를 아래와 같이 기록해야 정상 작동하는 것을 확인할 수 있다. 


On iOS, use:

 path = "file:" + Application.dataPath + "/Raw/";

음.. 왜 정식 메뉴얼에서는 수정되지 않는지 확인해 봐야 할 듯.

반응형