Zwoptex 사용하기

3722 단어 cocos2d-x
텍스처 아틀라스를 쉽게 만들 수 있는 도구Zwoptex를 사용해 봅니다.

도구 자체는 간단!
드래그 앤 드롭으로 파일을 추가하고 Publish 버튼을 누르면 됩니다.

화면은 이런 느낌입니다.


출력되는 파일은 2개 있습니다.
  • plist 파일
  • png 파일

  • 흑백 이미지를 번갈아 바꾸는 애니메이션 샘플입니다.

    샘플
        // 最初にplistファイルを読み込む.
        auto cache = SpriteFrameCache::getInstance();
        cache->addSpriteFramesWithFile("test-0001-default.plist");
    
        // Spriteを表示する.
        auto sprite = Sprite::createWithSpriteFrameName("black.png");
        sprite->setPosition(100, 100);
        this->addChild(sprite);
    
        // アニメーションさせる.
        Vector<SpriteFrame *> frames;
        frames.pushBack(cache->getSpriteFrameByName("black.png"));
        frames.pushBack(cache->getSpriteFrameByName("white.png"));
        Animation *animation = Animation::createWithSpriteFrames(frames, 0.5f);
        Animate *animate = Animate::create(animation);
        RepeatForever *repeat = RepeatForever::create(animate);
        sprite->runAction(repeat);
    

    간단하네요.

    이상

    좋은 웹페이지 즐겨찾기