- 編集済み
Wish StarlingTextureLoader can be instantiated with starling
Title : Wish StarlingTextureLoader can be instantiated with starling Textures.
Using Spine runtime for Starling, we can make SkeletonData with general starling TextureAtlas by StarlingAtlasAttachmentLoader.
Also we can make SkeletonData with Spine TextureAtlas by StarlingTextureLoader with AtlasAttachmentLoader (like your GoblinsExample).
Here, there is a problem.
StarlingAtlasAttachmentLoader requires Bitmap(s) or BitmapData(s) for instantiation.
It is common that Starling users load image assets via starling.utils.AssetsManager, but AssetsManager automatically makes starling.textures.Texture from BitmapData loaded and remove the BitmapData immediately. We can never get BitmapDatas from AssetsManager.
That means, when we load Spine TextureAtlas files via AssetsManager, it is impossible to make SkeletonDatas.
To solve this problem, I made custom StarlingTextureLoader.
https://github.com/harayoki/SpineTest1/blob/46637de982b7f4f7f60ba886e8678463409c0b84/src/demos/MyStarlingTextureLoader.as
Hope Spine runtime for Starling has this feature officially. :hi:
Updated.
https://github.com/harayoki/SpineTest1/blob/Straling2_Spine3_4_demo/src/harayoki/spine/starling/MyStarlingTextureLoader.as
This works with Starling2 and Spine3.4 Runtime...
Nice! I opened an issue for this here: [starling] Allow StarlingAtlasAttachmentLoader to work with Texture instead of BitmapData · Issue #651 · EsotericSoftware/spine-runtimes · GitHub
You can send a pull request if your changes don't break the old API!
This issue is now fixed! You can pass Bitmap(s), BitmapData(s) or Texture(s) to StarlingAtlasLoader and it will do the right thing. Thanks for the suggestion!