boldbigflank

  • 10 ديسمبر 2013
  • انضمّ(ت) 31 مايو 2013
    • تم التحرير
  • Hi,

    I noticed that when you use the "Texture Packer..." option in the menu to pack a directory, it includes all the images in a folder. When I export my skeleton and check the "create atlas" box, it creates one with only the images that are used by the skeleton, even though there are other images in the "images" smart folder path. The settings page looks the same for each method, but the outcome is different.

    I think it would make sense to add a checkbox that lets us choose whether to include other images found in the sprites folder during export.

  • I should note that when I built Spine into my existing project, I created a 'spine' folder in my project's libs directory, then put the contents of both spine-runtimes/spine-cocos2dx/src/spine and spine-runtimes/spine-c/src/spine into it. Maybe not the cleanest, but it works.

    • تم التحرير

    Hi Epenetus,

    I've got Spine working for Cocos2d-x, I hope I can help out here.

    I haven't bothered getting the example running yet, so I'll go through my steps now.

    Open up the project, missing "cocos2d.h"

    • take the cocos2d-x/cocos2dx folder contents from my git clone of cocos2d-x project, copy into spine-runtimes/spine-cocos2dx/cocos2dx folder

    Get data from file(spineboy.atlas) failed!
    I found that the setSearchPaths command was using the 'ipad' folder, which doesn't exist. I've made a change to AppMacros.h and submitted a pull request. Change AppMacros.h:64-67 to look like this:

    static Resource smallResource = {cocos2d::CCSizeMake(480, 320), "iphone"};
    static Resource mediumResource = {cocos2d::CCSizeMake(960, 640), "iphone-retina"};
    static Resource largeResource = {cocos2d::CCSizeMake(1024, 768), "iphone-retina"};
    static Resource extralargeResource = {cocos2d::CCSizeMake(2048, 1536), "iphone-retina"};

    Then it ran.

  • Cool, thanks again.

  • I also think it would be nice to be able to export all my animations at once. I only have two at the moment, but I have to export each individually.

    • تم التحرير
  • Hi all,

    When I export my animation as a sequence of images, it names the files 0.png-#.png. I have to rename these so they don't conflict in Texture Packer. I would love a "filename prefix" field so I can choose the name of the files. Even more advanced, a filename field with variables such as "{animation_name}-{frame_number}.png" would be cool, but unnecessary for my purposes. Even if the output were {animation_name}#.png by default I'd be happy.

    I'm loving the Spine program so far. I'm not a designer by any stretch of the imagination, but this program has helped me make something beautiful.