Dump SoundBank asset data files

This commit is contained in:
Jan
2021-04-05 18:50:42 +02:00
parent 05303313be
commit 3cda71d1e7
10 changed files with 670 additions and 2 deletions

View File

@ -5755,6 +5755,14 @@ namespace T6
MaterialArgumentDef u;
};
enum SndAliasType
{
SAT_UNKNOWN = 0x0,
SAT_LOADED = 0x1,
SAT_STREAMED = 0x2,
SAT_PRIMED = 0x3,
SAT_COUNT = 0x4,
};
struct SndAlias
{
@ -5764,7 +5772,7 @@ namespace T6
const char* secondaryname;
unsigned int assetId;
const char* assetFileName;
unsigned int flags0;
unsigned int flags0; // Bits 15/16 are SndAliasType
unsigned int flags1;
unsigned int duck;
unsigned int contextType;