Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

+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! 

in Feature Requests by Narie J. (560 points)

1 Answer

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

 

by 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!
...