• Editor
  • Cocos2d runtime with box2d

I'm going to see if anyone has any ideas about my problem before I go posting a bunch of detailed info.

I downloaded the cocos2d runtime and got the sample project to compile and run great!

Now I am trying to pull those into a new project that I have already been working on and it gives me an error stating that "Atlas" is an unknown type. I have atlas.c pulled into my project and it is even show in the compile list but for some reason the compiler is not finding that definition.

Any thoughts??

Thanks for all the support! You guys have a great tool and are doing a great job!

Related Discussions
...
  • संपादित

Thanks! Welcome to Spine! 🙂

Are you importing spine-cocos2d-iphone.h? That includes spine.h, which includes Atlas.h. Note you'll need in your project all the source files from spine-cocos2d-iphone/src, spine-c/src, and spine-c/include.

This example shows using Box2D with the libgdx Java runtime:
https://github.com/EsotericSoftware/spi ... D.java#L88
It is not ObjC and is a little bit outdated, but it shows how you create a body using the attachment offset, then each frame you set the transform of each body to the corresponding bone's world transform.

Yah I am importing spine-cocos2d-iphone.h.

It is asking if I want to use "spine::Atlas" but that looks like C++ to me.

Ill take a look at the example you provided to see if there is anything there.

4 दिन बाद में

Hi Adamfari,

I had the same problem, and somehow fixed it with these changes:

  • change extension spine-cocos2d-iphone.m to .mm

  • And add this to spine-cocos2d-iphone.h

#include "spine.h"
#include "cocos2d.h"
#ifdef __cplusplus
using namespace spine;
#endif

This should have been fixed some time ago. Are you guys using the latest? If I rename ExampleLayer.m to .mm it still works just fine.

Yah I am using the latest....

What we finally did was to add

using namespace spine;

to the file that I am importing spine-cocos2d-iphone.h in. That solved the problem for me! Now it works fine.

I've just committed removal of namespace from spine-c, so you shouldn't need to use "using" anymore.