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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T09:35:30+00:00 2026-05-14T09:35:30+00:00

I just have a simple sprite – how can I get it to rotate?

  • 0

I just have a simple sprite – how can I get it to rotate?

A good answer would show how to rotate both a dynamic sprite and a static_mass sprite

  • 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-14T09:35:30+00:00Added an answer on May 14, 2026 at 9:35 am

    If the sprite is dynamic / non-static, just do like so:

     cpBodySetAngVel(ObjSmSprite.shape->body,0.25); 
    

    For a static body, you can do something like this:

    [ObjSmStaticSprite.shape runAction:[CCRepeatForever actionWithAction:
                             [CCSequence actions:
                              [CCRotateTo actionWithDuration:2 angle:180],
                              [CCRotateTo actionWithDuration:2 angle:360],
                              nil]
    
                             ]];
    
    
    smgr.rehashStaticEveryStep = YES; //Setting this would make the smgr recalculate all static shapes positions every step
    

    To Summarize, here is a spinning static sprite, following be spinning dynamic sprite.

      // Add Backboard
        cpShape *shapeRect = [smgr addRectAt:cpvWinCenter mass:STATIC_MASS width:200 height:10 rotation:0.0f ];// We're upgrading this 
      cpCCSprite * cccrsRect = [cpCCSprite spriteWithShape:shapeRect file:@"rect_200x10.png"];
        [self addChild:cccrsRect];
    
      // Make static object update moves in chipmunk
      // Since Backboard is static, and since we're going to move it, it needs to know about spacemanager so its position gets updated inside chipmunk.
      // Setting this would make the smgr recalculate all static shapes positions every step
    //  cccrsRect.integrationDt = smgr.constantDt;
    //  cccrsRect.spaceManager = smgr;
      // Alternative method: smgr.rehashStaticEveryStep = YES;
      smgr.rehashStaticEveryStep = YES;
    
      // Spin the backboard
      [cccrsRect runAction:[CCRepeatForever actionWithAction:
                             [CCSequence actions:
                              [CCRotateTo actionWithDuration:2 angle:180],
                              [CCRotateTo actionWithDuration:2 angle:360],
                              nil]
    
                             ]];
    
    
      // Add the hoop
      cpShape *shapeHoop = [smgr addCircleAt:ccp(winSize.width/2.0f,winSize.height/2.0f - 55.0f) mass:1.0 radius: 50 ];
      cpCCSprite * cccrsHoop = [cpCCSprite spriteWithShape:shapeHoop file:@"hoop_100x100.png"];
        [self addChild:cccrsHoop];
      cpBodySetAngVel(cccrsHoop.shape->body,0.25); 
    

    Disclaimer: I’m trying to answer my own question, and this answer might be missing important subtleties – it just represents what I know, so far.

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

Sidebar

Related Questions

Can AJAX communicate with MySQL directly? For example, I just have a simple text
I just have one simple question about XSS attack. I know that you can
I have a simple class that essentially just holds some values. I have overridden
I'm just trying to do simple scripting with F#, and Math.PI seems to have
I have a simple HelloWorld app done in FlexBuilder. It's just a simple class
I have this simple class: import spark.effects.GlowFilter; public class Letter extends Sprite { private
I have just started learning C#. Can anyone explain the technical differences between a
I just have a simple question regarding dbms_stats.gather_table_stats. In our application this statement occurs
I have a simple app with a nav bar controller and I would like
I just have started to learn Haskell and combine reading books and tutorials with

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.