error LNK2001: 无法解析的外部符号 "class cocos2d::Vec2 const cocos2d::CCPointZero" (?CCPointZero@cocos2d@@3VV

来源:互联网 发布:管家婆数据库 编辑:程序博客网 时间:2024/06/01 09:00

plate->setAnchorPoint(CCPointZero);

改成:

plate->setAnchorPoint(ccp(0,0));

2 0