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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T16:32:59+00:00 2026-06-09T16:32:59+00:00

I have a game that uses a progress bar to inform player of level

  • 0

I have a game that uses a progress bar to inform player of level of certain stats of the player. For example hunger, when it starts at zero and slowly adds up to maximum bar. When he eats the hunger reduces.

I tried implementing as progressBar, but it works wrong, as the bar expands both ways, and I need it to grow one side only. Also I had hard time setting the bar, since it uses actions.

Is there an easy way to do it?

I have a class Pet and it has int hunger (0-100). I want the bar to be showing hunger.

hungerBar = [CCSprite spriteWithFile:@"redbar.png"];
    CCLabelTTF *hungerLabel = [CCLabelTTF labelWithString:@"Hunger:" fontName:@"Helvetica" fontSize:25];
    [hungerLabel setColor:ccc3(255, 255, 255)];

//    CGPoint temp = ccp(250, 300);
//    hungerBar.position = temp;
 //   [self addChild:hungerBar];
    CGPoint temp2 = ccp(250, 320);
    [hungerLabel setPosition:temp2];
    [self addChild:hungerLabel];

    CCSprite *bar = [CCSprite spriteWithFile:@"redbar.png"];
    powerBar= [CCProgressTimer progressWithSprite:bar];
    powerBar.type = kCCProgressTimerTypeBar;
    powerBar.position = ccp(-30, -10);
    powerBar.anchorPoint = ccp(0, 0);
    powerBar.percentage = 20; // (0 - 100)
    [hungerLabel addChild:powerBar];

Added source.

  • 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-09T16:33:00+00:00Added an answer on June 9, 2026 at 4:33 pm

    Before cocos2d 2.0, you should be able to just use CCProgressTimer of type: kCCProgressTimerTypeHorizontalBarLR.

    CCProgressTimer* powerBar= [CCProgressTimer progressWithFile:@"fullbar.png"];
    powerBar.type = kCCProgressTimerTypeHorizontalBarLR;
    powerBar.percentage = 0; // (0 - 100)
    

    To vary your hunger level, simply set the percentage property of your bar.

    EDITED:

    Ok, with cocos2d 2.0, it seems that such a type is no longer available. To get a left-to-right-bar, you will need to set the new but somewhat confusing midpoint and barChangeRate properties (cocos2D 2.0 documentation link):

    CCProgressTimer* powerBar= [CCProgressTimer progressWithSprite:[CCSprite spriteWithFile:@"fullbar.png"]];
    powerBar.type = kCCProgressTimerTypeBar;
    powerBar.midpoint = ccp(0,0); // starts from left
    powerBar.barChangeRate = ccp(1,0); // grow only in the "x"-horizontal direction
    powerBar.percentage = 0; // (0 - 100)
    

    See if these helps!

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

Sidebar

Related Questions

I have a game that uses the accelerometer to move the player. For this
I have a 2-player, iOS turn-based game that uses the game center and GKTurnbasedMatch.
I have a game engine that uses OpenGL for display. I coded a small
I have a cocos2d powered game that uses UIKit menues, so I only use
I have a C# game program that i'm developing. it uses sound samples and
I have a simple game that uses a 3D grid representation, something like: Blocks
i have a java game app that uses sockets to communicate with each other.
I am developing a game that uses a different controller for each level. It
I have a class Game that uses a class TCPServer . I would like
I have a Java game that uses networking, and I have a client (using

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.