compiling cocos3d 0.7.2 with Xcode5 error

Posted by jimmy on Stack Overflow See other posts from Stack Overflow or by jimmy
Published on 2013-10-23T09:52:32Z Indexed on 2013/10/23 9:53 UTC
Read the original article Hit count: 294

Filed under:
|

I tried to compile my cocos3d 0.7.2 project with xcode5. I am already stuck at the first error I get with the line “super.parent = aNode;” in CC3ParametricMeshNodes.m.

this line is in the setParent function:

-(void) setParent: (CC3Node*) aNode {
super.parent = aNode;
[self deriveNameFrom: aNode];
if ( !mesh ) self.box = self.parentBoundingBox;
}

and the error I get is:

CC3ParametricMeshNodes.m:246:15: Assignment to readonly property

I am sure that there will be other errors after this one is fixed. Is there any topic on common errors that occur while compiling cocos3d 0.7.2 with Xcode5?

Thanks

© Stack Overflow or respective owner

Related posts about xcode5

Related posts about cocos3d