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.

0 votes
I have attempted to set up a version control so that me and some fellow students can colaborate on a wwise project. I started a git repo and it has the wwise project folder within it. My friend created a test folder in wwise and pushed it in to main. I fetched and pulled from the repo to see if the changes were now in my project but we get an error message stating that the “physical folder was not found at the project load”. Dont really know why it wont work. Ive had it work seamlessly with other softwares before but here it doesnt seem to work, dont quite get it.

 

I am pretty new to using version control so yeah…

 

Thanks for any help
in General Discussion by Alfred Fallegård (110 points)

1 Answer

+2 votes
When your friend created a folder and pushed it, all it did is create it inside the .wwu file. But since Git does not have a concept of a folder, it does not track the folder being made. So when you pull these changes, Wwise reads the updated .wwu and looks for the new folder, which will not exist on your end. Git deals with filepaths. Same as Perforce.

The right way to test it is to create an actual file that Git can track, not a folder. Try having your friend create a new actor mixer entry and push that.
by Adrian J. (340 points)
Thanks! But how would you go about creating folders then? Structure wise i guess it can get quite messy if not using folders? And also, i couldnt find a straight forwards guide on which files should be in the .gitignore. Does it even need to be setup or is that just for bigger projects?
I think my initial answer might have not been clear enough. When you push a file into git, the file can be in any nested directory. But the directory itself is not tracked - the file is. So you can think of directories as something that's implicitly derived from all tracked files, but it's virtual in a way (no directories will ever be tracked or created explicitly without files being inside of them).
...