0

我是 cocos3d 的新手。我想用 cc3linenode 画一条线。

这是代码

float arr_location[] = {x,y,z, dx,dy, dz };
CC3LineNode* lineNode = [CC3LineNode nodeWithName: @"Line test"];
[lineNode populateAsLineStripWith: 2
                         vertices: arr_location
                        andRetain: YES];
lineNode.color = ccGREEN;

[_lines addObject:lineNode];
[_activeWorld addChild:lineNode];

但是当我尝试这个时,我收到这样的错误

Instance method populateAsLineStripWith: vertices: andRetain: is not found(return type defaults to 'id')
4

1 回答 1

4

你进口了吗?

#import "CC3ParametricMeshNodes.h"

您的错误为您提供了未找到的方法实例,因此您只需要使用该方法进行正确的导入

在这里找到答案

证明截图

于 2013-06-04T08:25:56.417 回答