vote up 0 vote down star

I want to change the sprite image.

Say for example.

mainSprite=[Sprite spriteWithFile:@"redFile.png"];
[self addChild:mainSprite];

Here, Sprite is already added to a layer. I have mainSprite (pointer) which can access it.

If I change

[mainSprite setOpacity:150];

it works perfectly. But Here I want to change the sprite image instead of opacity.

But Don't know how?

Thanks in advance for helping me.

Sagar

flag

2 Answers

vote up 1 vote down check

Ok. Damn Simple.

I find it by R & D.

Texture2D *x=[[Texture2D alloc]initWithImage:[UIImage imageNamed:@"box-purple-dark.png"]];
[mainSprite setTexture:x];
link|flag
vote up 0 vote down

hi couldnt find the setTexture method pls help.

link|flag
You should ask question for that. How ever, in each sprite class object has a method for setting a texture. Here mainSprite is object of sprite class. Hope that would be helpful to u. – sagar Nov 2 at 20:02

Your Answer

Get an OpenID
or

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