CDB Format - DustStormPettigrew/LibLR1 GitHub Wiki
CDB — Cutscene
Cutscene sequence data. References WDB scenes and defines frame-based camera, model, event, and light sequences.
Top-Level Blocks
| Block ID | Hex | Type |
|---|---|---|
| WDB refs | 0x28 |
string[] |
| Cutscenes | 0x27 |
Dict<string, CDB_Cutscene> |
CDB_Cutscene Properties
| Property | Hex | Type |
|---|---|---|
| Speed | 0x3B |
int |
| Duration | 0x2C |
int |
| Cameras | 0x29 |
CDB_Camera[] (collidable dict) |
| Models | 0x2E |
CDB_Model[] (collidable dict) |
| Events | 0x37 |
CDB_Event[] (collidable dict) |
| Ambient Lights | 0x35 |
CDB_AmbientLight[] (collidable dict) |
| Directional Lights | 0x3A |
CDB_DirectionalLight[] (collidable dict) |
Each sub-object has StartFrame (0x2B) and Duration (0x2C) properties for frame-based timing.
Uses ReadCollidableDictionaryBlock — keys may collide (same name used multiple times).
Read/Write Support
Read only. Marked as "incomplete" in source.