menu
 

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

+3 투표

Hi team, 

It would be cool if Wwise can autosave or at least generate a temporary file to protect our recent work in case Wwise freezes or crashes. 

Also, it would be really useful if we could see that our project is being saved through some kind of status bar or something like that when our project has been autosaved or when we manually save the project. 

The status bar might also be able to show that our project is being closed when we quit the authoring tool because sometimes it feels like Wwise lacks interaction with users.

I'm sure a lot of users are waiting for this to come in 2018.1 version. 

Let me know your thoughts below! 

Feature Requests Narie J. (560 포인트) 로 부터

1 답변

+1 투표

I think this is at odds which what most users ( under source control ) would actually want.

However if you want to setup something to do this you can use the WAAPI to periodically save your project like this:


import waapi
import json
import urllib2
urllib2.urlopen( "http://localhost:8090/waapi", data = json.dumps( { 'uri' : waapi.WAAPI_URI.ak_wwise_core_project_save, 'options' : {}, 'args' : {} } ) )

 

Dan M. (380 포인트) 로 부터
Hi,
I'm missing autosave as well. I know I would love to have some kind of caching/temp/recovery file similar to Visual Studio or Logic Pro X would be very welcome.

In the meantime, I'm more than happy to implement a hack. I'm just starting out in WWise, so I would appreciate if you could elaborate more on this. Where would I add this?

Thanks in advance!
...