Audiokinetic의 커뮤니티 Q&A는 사용자가 Wwise와 Strata 커뮤니티 내에서 서로 질문과 답변을 하는 포럼입니다. Audiokinetic의 기술 지원팀에게 문의하고 싶으신 경우 지원 티켓 페이지를 사용해주세요.

Can I load Windows pck files on Mac?

0 투표
Hi!

We are working on porting our game to Mac. However, we're getting a failure (AK_Fail) when we call LoadFilePackage() to load our .pck files on Mac. We're able to re-use all of the other content from PC on Mac without any modifications, but these packages don't seem to want to load.

Is it possible to load Windows package files on Mac? Or do we have to generate a separate set of Mac-specific packages?

We're using CAkFilePackageLowLevelIO<CAkDefaultIOHookBlocking> for IO handling.

Thanks!

 

Edit: I figured out that we weren't setting the base path correctly on Mac. Now it's loading the package, but claiming that the package's language is invalid.
문의 2016 10월 17 General Discussion Phillip B. (100 포인트) 로 부터
수정 2016 10월 17 Phillip B. 로 부터
The language was invalid due to the difference in the size of characters between Windows and POSIX. Windows uses 16-bit chars while POSIX uses 8-bit chars (and a wchar is 32-bit, so there's no easy conversion). Looks like we'll have to create separate content for Mac.

Please sign-in or register to answer this question.

...