menu
 

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

+1 투표
Dear AudioKinetic,

I'm encountering the following challenge when trying to access music segment information such as info.iCurrentPosition. when I call:

public AkSegmentInfo infoSegment;
private uint iD;

void Start (){

iD = AkSoundEngine.PostEvent (eventName, this.gameObject,  (uint)AkCallbackType.AK_EnableGetMusicPlayPosition , MusicCallBack, this);

}

void Update (){

AKRESULT test = AkSoundEngine.GetPlayingSegmentInfo (iD, infoSegment);
print (test);

}

I get the result:  AK_NotImplemented. This in turn means I get null when trying to acces infoSegment and can't call infoSegment.iCurrentPosition.

What could this mean for this specific method? I looked for examples of other methods returning this result but I can't find any similarities. Am I missing something important?

 

Thanks!
General Discussion Nick v. (110 포인트) 로 부터

Please sign-in or register to answer this question.

...