This is an example that uses tools available in Ubuntu, but the idea is general and can be implemented with other tools. Even in Ubuntu you may want to adjust the solution to your needs.
Place yourself in the parent directory of the directory you want to analyze. In your case the directory you want to analyze is
GameID
and the parent directory isSteamWorkshop
.Make a copy of the whole directory you want to analyze. Use hardlinks or reflinks (if possible).
cp -rlx --no-preserve=all GameID GameID_copy
In the copy remove everything you don't want to count:
find GameID_copy ! -type d ! -path '*/sounds/*' -delete
The above command deliberately leaves all directories intact, so in the next step you will be able to see the whole directory structure.
Analyze what is left:
ncdu GameID_copy
Remove the copy when done:
rm -r GameID_copy