Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6541575
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:07:16+00:00 2026-05-25T11:07:16+00:00

Let’s say we have a CCSprite object that has an actions tied to it:

  • 0

Let’s say we have a CCSprite object that has an actions tied to it:

-(void) moveJack
{
    CCSpriteSheet *sheet = (CCSpriteSheet*)[self getChildByTag:kSheet];
    CCSprite *jack = (CCSprite*)[sheet getChildByTag:kJack];
...

    CCSequence *seq = [CCSequence actions: jump1, [jump1 reverse], jump2, nil];
    [jack runAction:seq]; 
}

If the sprite crosses over the screen boundary, I would like to display it at opposite side.
So, original sprite is half displayed on the right side (for example), and half on the left side, because it has not fully crossed yet.
Obviously (or is it), I need 2 sprites to achieve this.
One on the right side (original), and one on the left side (a copy).
The problem is – I don’t know how to create exact copy of the original sprite, because tied actions have scaling and blending transformations (sprite is a bit distorted due to a transformations).

I would like to have something like:

CCSprite *copy = [[jack copy] autorelease];

so that I can add an exact copy to display it on the correct side (and kill it after transition is over).
It should be a bitmap with all transformations applied… Is it possible?

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T11:07:17+00:00Added an answer on May 25, 2026 at 11:07 am

    I’ve solved the problem a while ago – just noticed that the question is still unanswered:

    We need a makeDoubler function that will copy current frame displayed in one sprite to another. I have implemented it as a member function of a class that inherits from CCSprite, and it looks somewhat like the following.

    In header

    @interface MySprite : CCSprite
    {
    //...
    }
    
    // makes sprite's image the same 
    -(void) makeDoublerTo:(CCSprite *)sprite;
    
    @end
    

    in implementation

    @implementation MySprite
    
    -(void) makeDoublerTo:(CCSprite *) sprite
    {
        [sprite setDisplayFrame:[self displayedFrame]];
        [sprite setScaleX:[self scaleX]];
        [sprite setScaleY:[self scaleY]];
        [sprite setRotation:[self rotation]];
        [sprite setFlipX:[self flipX]];
        [sprite setFlipY:[self flipY]];
        [sprite setAnchorPoint:ccp(self.anchorPoint.x,self.anchorPoint.y)];
        sprite.position = ccp(self.position.x, self.position.y);
    }
    
    @end
    

    You can use it like:

    MySprite *sprite = [CCSprite spriteWithFile:@"Icon.png"];
    CCSprite *sdoubler = [[CCSprite alloc] init];
    

    and in the game loop (also adjust visibility and coordinates):

    [sprite makeDoublerTo:sdoubler];
    [sdoubler setVisible:YES];
    ...
    

    I don’t use blending and alpha-ing in this case, but you can easily extend the makeDoubler function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say that we have an ARGB color: Color argb = Color.FromARGB(127, 69, 12,
Let's say I have a simple Login servlet that checks the passed name and
Let's say I have some text as follows: do this, do that, then this,
Let's say I have a Border whose DataContext is an object of type MyViewModel.
Let's say I have a JS in one file that creates a Viewport :
Let's say I have the following function in C#: void ProcessResults() { using (FormProgress
Let's say I have two assemblies: BusinessLogic and Web. BusinessLogic has an application setting
Let's say that I have a binary that I am building, and I include
Let's say that I have classes like this: public class Parent { public int
Let's say I'm creating an OpenGL game in C++ that will have many objects

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.