I am trying to develop my game using Coco2d-X. I am new with both Coco2d-X and C++ :)

I want to declare a CCSprite as instance variable in order to be able to use it in my whole class.

Up to now, I wrote:

  • in my .h:

    class HelloWorld : public cocos2d::CCLayerColor
    {    
    public:
    
        CC_SYNTHESIZE_READONLY(cocos2d::CCSprite *, _mySprite, Sprite);
    
        // CODE HERE....
    };
    
  • in my .cpp: I just want to do something like:

    _mySprite->removeFromParentAndCleanup(true);
    

But the compiler tells me "Use of undeclared identifier _mySprite"

Where am I wrong?

Sorry for my simple question ; I am a beginner with C++ !!

Thanks.

link|improve this question

80% accept rate
1  
1) learn some basic C++, 2) do a simpler C++ project, 3) learn Cocos and the framework, 4) do a lot more simple projects, 99) write a game. – Kerrek SB Dec 19 '11 at 19:38
I think you should delete comma in cocos2d::CCSprite *, _mySprite – Mr.M Dec 19 '11 at 19:40
Thanks for your answer Mr.M but the coma is required: 3 arguments in this method. Kerrek SB: it is what I am doing :) but I need help on this point ! – Regis_AG Dec 19 '11 at 19:45
If you can, use any other engine & programming language unless you're very proficient with another language (your question indicates you're not). The problem with C++ is that it's a very complex language, and it makes only one thing very, very easy: shooting yourself in the foot. Not the kind of beginner-friendly environment. More like the drill instructor from Full Metal Jacket, except that you don't understand a word he's saying except BULLS***!!! :) – LearnCocos2D Dec 19 '11 at 23:05
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.