Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在切换到 cocos2d 2.0.3 后尝试编译我的项目,但我不断收到此错误。(使用未声明的标识符'glColor4f')我应该使用其他东西来代替这种方法。
glColor4f(1.0f,1.0f,1.0f,1.0f);
您可以使用 ccDrawColor4F 作为替代品。
ccDrawColor4F(1.0f, 1.0f, 1.0f, 1.0f);
据我所知,cocos2d 2.0 使用的是 OpenGL ES 2.0,没有这个功能。您可以改用 glColorPointer。
DrawPrimitives::setDrawColor4F(r, g, b, a);