• Runtimes
  • [cocos2d iphone] Programatically setting an image

Related Discussions
...

I know this has been asked a few times, but its still not clear to me. I have referenced this page as well and it hasn't been sufficient.
http://esotericsoftware.com/spine-using ... mentloader

I have an attachment created for the rHand where I want to exchange the hand with a hand weapon.

"rHand":{"rHand":{"name":"wizard/rHand","x":7.26,"y":1.45,"rotation":130.31,"width":26,"height":25}},

Do I have to create an attachmentLoader to pull in the new image called battleAxe.png?

As I have read before, I don't need to tie this attachment to a skin right?

                 [[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"weapons.plist"];
                  
spAttachmentLoader* attachmentLoader; spAttachment* attach = AttachmentLoader_newAttachment(attachmentLoader,NULL ,ATTACHMENT_REGION,"battleAxe.png"); //Get the slot index of the weapon in the skin spSlot_setAttachment([anim findSlot:@"rHand"], attach);

Thanks!

I am stuck on the same problem. It would be wonderful if there were some code examples.

Here is what i want to achieve in


cocos2d runtime<


:

  • Load a single image in as if it was a texture region (e.g. "funnyhead.png")
  • Place it into a slot (e.g. "head")
  • Hide other head attachments and show "funnyhead.png" attachement

The other attachments are part of the the atlas which was loaded in initially.

I'm probably just to dumb to figure it out but it should be simple to do.

It is really easy to switch the images in the editor using attachments. Do you just want to switch the images in code? Or do you want to dynamically load new images and attach them to a slot/bone combo like I am trying to do?

Let's hope it is: want to dynamically load new images and attach them to a slot/bone. And yes I want to do everything in code, I know the editor is easy but so are many other editors ;-)