<key>grossini-arm-l.png</key>
<dict>
<key>frame</key>
<string>{{2,64},{28,26}}</string>
<key>offset</key>
<string>{2,-2}</string>
<key>rotated</key>
<false/>
<key>sourceColorRect</key>
<string>{{4,5},{28,26}}</string>
<key>sourceSize</key>
<string>{32,32}</string>
</dict>
frame
The sprite location within the sprite-sheet as position and size values.
offset
Most of the current texture packing tools remove transparent areas of the image before they pack it. Imagine you got a sprite with the size of 100x100, but on the left and right there are 4 columns of totally transparent pixels. The packing tool will remove these to save space, but store offset andsourceSize, so that your sprite will be 100x100 pixels in your game. Note that the offset is always relative to the center of the sprite (comparing the center of the cropped and the center of the original sprite).
rotated
Whether or not the sprite has been rotated within the sprite-sheet (if this is true, the sprite is rotated 90 degrees clockwise).
sourceColorRect
The rectangle with actual color information inside your source sprite. If you take the 100x100 image described above (with 4px transparent pixels on the left and on the right), the sourceColorRect will be {{4,0},{92,100}}
sourceSize
This is the size of the original sprite (beware that some texture-packers can add padding to this if you chose to).
C++解析plist文件
本文详细解释了plist文件中的frame、offset、rotated、sourceColorRect和sourceSize等关键属性,帮助开发者理解如何在Cocos2D中使用这些属性进行精灵定位。
1万+

被折叠的 条评论
为什么被折叠?



