I have a view which can contain multiple sprites at a time, now i want to have a select effect when ever i touch a sprite. Some Usefull/helping links would be very helpfull.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I see two ways:

  1. To change the sprite with selected version (make original sprite invisible and show selected).

  2. Create a frame sprite (possibly from multiple parts (add them to one parent)) and show it when you need to select the original sprite.

SOME CODE

CCNode *base = [CCNode node];
CCSprite *original = [CCSprite node]; //change this to create your sprite
[base addChild:original]

CCNode *frameNode = [CCNode node];
[base addChild: frameNode];
[frameNode setVisible:NO];
CCSprite *part1 = [CCSprite node]; //replace to create your part
[frameNode addChild: part1];
[part1 setAnchorPoint:. ...];
[part1 setPosition: ...];
[part1 setRotation: ...];
//add more parts

When your original sprite is selected:

[frameNode setVisible: YES]; //you can also use some CCAction to make it appear more beautiful
link|improve this answer
hmmm... second one looks good but as i am a newbie in cocos, a little code would help a lot... – Farhan Oct 14 '11 at 23:15
@Farhan: see my edit please – Andrew Oct 15 '11 at 7:46
Ok thanx for the edit. but 2 issues: first i was talking about in android and second is, i dont think we can give custom width and height in setContentSize() because it just dont have any effect.... – Farhan Oct 17 '11 at 8:24
@Farhan: I've said nothing about setContentSize(). Did not notice 'andoroid'. I think you can easily rewrite this code for android – Andrew Oct 17 '11 at 10:02
rewriting is what i have been doing since i started on cocos in android... anyways, actually, i cant have frame for every sprite, so i created a frame of 100x100 and was hoping to resize it to the selected sprite's size and then add it to layer... – Farhan Oct 17 '11 at 10:58
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.