0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

メモ:ShoeBoxでスプライトシーツを作る

Posted at

openFrameworksでスプライトシートを使ってアニメーションしたのでそのメモ

##プラットフォームとAddonとツール

  • openFrameworks
  • ofxTexturePacker (アニメーションの再生に使用
  • ShoeBox (スプライトシートの作成ツール

##TexturePackerでいいじゃないか
その通りですが無償でやりたかった
できればTexturePackerほしいですが・・・

##出力してみる
ShoeBoxからスプライトシートを出力してみると.pngと.xmlが出力される
当然だけどofxTexturePackerはTexturePackerというツールのAddonなのでXMLは読み込めない

##XMLのフォーマットが違う
ShoeBoxが出力するxmlのフォーマットを変更することにした

ShoeBoxはSprite Sheet SettingのAdvancedでxmlの出力フォーマットをいじれるようです
以下のような変更をした

File Format Loop
\t<sprite n="@id" x="@x" y="@y" w="@w" h="@h" pX="0.0" pY="0.0"/>\n
File Format Outer
<TextureAtlas imagePath="@TexName" width="@W" height="@H">\n@loop</TextureAtlas>

これで最低限だけどスプライトシートが読み込めるようになった

2018-06-13_095820.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?