gpt4 book ai didi

ios - 在 Xcode 4.2 下构建 cocos2d 应用程序时如何解决这些错误?

转载 作者:行者123 更新时间:2023-12-01 17:00:00 27 4
gpt4 key购买 nike

我的应用程序之前编译得很好,但现在使用 Xcode 4.2 构建时出现以下错误:

在 GLES-Render.mm 中,它报告:

variable length array of non pod element type b2vec2


`cannot initialize parameter of type CCScene with an rvalue of type helloworld`

我已经成功使用此代码一年多没有问题,所以我猜我需要在我的build设置中修复一些东西。我可以做些什么来解决这些错误?

最佳答案

只需更换

b2Vec2 vertices[vertexCount];
for( int i=0;i<vertexCount;i++) {
vertices[i] = old_vertices[i];
vertices[i] *= mRatio;
}

到:
ccVertex2F vertices[vertexCount];
for( int i=0;i<vertexCount;i++) {
b2Vec2 tmp = old_vertices[i];
tmp *= mRatio;
vertices[i].x = tmp.x;
vertices[i].y = tmp.y;
}

关于ios - 在 Xcode 4.2 下构建 cocos2d 应用程序时如何解决这些错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7968675/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com