10-30-2018, 02:08 AM
PNG is a ..... PNG. You can open it with any image viewer. The parts are clipped off from this master image.
PLIST is a Property List file, typically used in macOS and iOS applications. It's basically just XML (plain text) file. The first key is:
From that information you can deduce the name of the part (a_dabi3_yandiimage.png), its rotation, offset and where (x,y) to clip said part from the master image.
animxml.bobj appears to contain animation (and sound playback) data.
PLIST is a Property List file, typically used in macOS and iOS applications. It's basically just XML (plain text) file. The first key is:
Code:
<key>a_dabi3_yandiimage.png</key>
<dict>
<key>frame</key>
<string>{{75,378},{31,42}}</string>
<key>offset</key>
<string>{1,0}</string>
<key>rotated</key>
<true/>
<key>sourceColorRect</key>
<string>{{2,0},{31,42}}</string>
<key>sourceSize</key>
<string>{33,42}</string>
animxml.bobj appears to contain animation (and sound playback) data.