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 8956029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:41:41+00:00 2026-06-15T14:41:41+00:00

I have subclassed CCSprite to make a Zombie object.It just loads a zombie image

  • 0

I have subclassed CCSprite to make a Zombie object.It just loads a zombie image and let the user move it:

@implementation Zombie

@synthesize speed; // CGFloat


- (id) initWithPosition: (CGPoint) position
{
    if(self= [super initWithFile: @"zombie_icon.png"])
    {
        CCTouchDispatcher* dispatcher=[CCTouchDispatcher sharedDispatcher];
        self.position=position;
        self.scale= 0.25;
        speed= 50.0;
        [dispatcher addTargetedDelegate: self priority: 0 swallowsTouches: YES];
    }
    return self;
}

#pragma - mark Movements

- (NSTimeInterval) timeFromDestination: (CGPoint) destination
{
    CGFloat distance= sqrt( pow (fabs(self.position.x-destination.x),2) + pow (fabs(self.position.y-destination.y),2));
    return distance/speed;
}

- (BOOL) ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event
{
    return YES;
}

- (void) ccTouchEnded:(UITouch *)touch withEvent:(UIEvent *)event
{
    CGPoint location=[self convertTouchToNodeSpace: touch];
    NSTimeInterval duration= [self timeFromDestination: location];
    [self runAction: [CCMoveTo actionWithDuration: duration position: location]];
}



@end

So in my layer I do this:

Zombie* zombie=[[Zombie alloc]initWithPosition: CGPointMake(200, 250)];
[self addChild: zombie];
[zombie release];

The zombie moves sometimes correctly and sometimes not.
For example the zombie is in (100,100), I click in (200,200), it moves towards that direction, but when it reaches (200,200) it keep going until it goes off the screen.
Later I could upload a video if you say that the description of the problem isn’t so clear.

  • 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-06-15T14:41:42+00:00Added an answer on June 15, 2026 at 2:41 pm

    you probably got your destination wrong (logging helps). Your zombie’s current position is in parent’s node space coordinates, and you have it moving to a destination that in in zombie’s node space notation.

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

Sidebar

Related Questions

I have subclassed UIView object inside a uiscrollview which displays a pdf page. I
So I have a subclassed UITableView that lists data. I need to make only
I have subclassed UITableViewCell to make a custom cell for a tableView. I add
I have subclassed the UIToolbar to make it easier to implement a safari next,
I have subclassed the image control (to display images at their true pixel size,
I have a strange problem while working with CCSprite subclass Creature. Lets,my object is
I have subclassed UIView to make a custom groupView I use to add a
I have subclassed UIVIew to make my custom view. -(UIMyMessageView*)init:(NSString*)withMessage { [super initWithFrame:messageFrame]; //
I have a CCSprite subclass. In the draw method, I am drawing some cocos2d
I have subclassed a control in C# WinForms, and am custom drawing text in

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.