La section Questions et réponses de la communauté Audiokinetic est un forum où les utilisateurs de Wwise et de Strata peuvent poser des questions et répondre à celles des autres membres de la communauté. Si vous souhaitez obtenir une réponse de la part de l'équipe de soutien technique d'Audiokinetic, veillez à utiliser le formulaire de Tickets de Soutien.

+3 votes

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! 

dans Feature Requests par Narie J. (560 points)

1 Réponse

+1 vote

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' : {} } ) )

 

par Dan M. (380 points)
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!
...