XPlor/definitions/asura/chunks/pvet_chunk.xscript

45 lines
882 B
Plaintext
Raw Normal View History

// PVET - Previous Vector Track Chunk
// Contains previous frame vector data for interpolation
// Found in .cut files
type pvet_chunk [display="PVET Previous Vector"] byteorder BE
{
// Standard 16-byte Asura chunk header
chunk_id = ascii(read(4));
u32 chunk_size;
u32 version;
u32 flags;
chunk_id = chunk_id;
ui("chunk_id", "Chunk ID");
chunk_size = chunk_size;
ui("chunk_size", "Chunk Size");
version = version;
ui("version", "Version");
flags = flags;
ui("flags", "Flags");
// Track type
u32 track_type;
track_type = track_type;
ui("track_type", "Track Type");
// Entry count
u32 entry_count;
entry_count = entry_count;
ui("entry_count", "Entry Count");
// Keyframe count
u32 keyframe_count;
keyframe_count = keyframe_count;
ui("keyframe_count", "Keyframe Count");
}