NANR ("RNAN") - Nitro Animation Runtime
Author(s): Gonhex
Research: (see sections)
The animation runtime creates frame by frame animations using cells. Affine transformations can also be applied to frames.
Table of Contents
Data Structure
File Container
struct ContainerFileNANR
{
    /* 0x00   */ struct NitroFileHeader fileHeader;
    /* 0x10   */ struct ContainerSectionABNK sectionDataABNK;
    /* append */ struct ContainerSectionLABL sectionDataLABL;
    /* append */ struct ContainerSectionUEXT sectionDataUEXT;
}; // entry size = fileHeader.lengthFile
| Field Name | Description | Data Type | 
|---|---|---|
| fileHeader | Header of this file. fileHeader.signature = "RNAN". | NitroFileHeader | 
| sectionDataABNK | Cell animation data. | ContainerSectionABNK | 
| sectionDataLABL | Animation-name table. | ContainerSectionLABL | 
| sectionDataUEXT | Cluster flag. | ContainerSectionUEXT |