2014-01-27 3 views
0

는 나는 그것을 어딘가에 CC_SPRITE_DEBUG_DRAW 플래그가 버전 3 에서 작동하지 않습니다 레이어 위치에 추가 스프라이트 주위에 경계 상자 그릴하려고하지만 난 내가 정신 그리기 방법이 코드를 사용 CCSpritecocos2d-x 3 beta에서 Sprite 주위에 테두리 상자를 그리는 방법은 무엇입니까?

의 코드를 모금 :

Point vertices1[4] = { 
     Point(_quad.bl.vertices.x, _quad.bl.vertices.y), 
     Point(_quad.br.vertices.x, _quad.br.vertices.y), 
     Point(_quad.tr.vertices.x, _quad.tr.vertices.y), 
     Point(_quad.tl.vertices.x, _quad.tl.vertices.y), 
    }; 

    DrawPrimitives::setDrawColor4B(255, 255, 0, 255); 
    glLineWidth(2); 
    Point(50,100) }; 
    DrawPrimitives::drawPoly(vertices, 4, true); 

그러나 그것은 나에게 영창 위치가 아닌 메인 창의 왼쪽 하단 구석에 스프라이트를 그리는 세계 공간 위치를 제공합니다. 어떻게 해결할 수 있습니까?

PS 내가 여기서 뭔가를 보았다하지만 난 그것이 여전히 V2 cocos2dx (3 http://www.naveoss.com/site/450/tutorials/opengl-drawing-boxes-around-ccsprite-subclasses

답변

1

는 다음 코드에서 시도를하시기 바랍니다 cocos2dx로 변환하는 방법을 잘 모릅니다하지만 당신은 쉽게로 업그레이드 할 수 있습니다 v3).

void YourSprite::draw() { 
    ccGLEnableVertexAttribs(kCCVertexAttribFlag_Position); 
    kmGLPushMatrix(); 
    CCRect bb = boundingBox(); 
    CCPoint vertices[4] = { 
     CCPoint(bb.origin.x, bb.origin.y), 
     CCPoint(bb.origin.x, bb.origin.y + bb.size.height), 
     CCPoint(bb.origin.x + bb.size.width, bb.origin.y + bb.size.height), 
     CCPoint(bb.origin.x + bb.size.width, bb.origin.y) 
    }; 
    ccDrawColor4B(255, 255, 0, 255); 
    glLineWidth(2); 

    ccDrawPoly(vertices, 4, true); 
    kmGLPopMatrix(); } 

또한 DrawPrimitive보다 우수한 성능을 가진 CCDrawNode 및 drawPolygon을 확인하십시오.

추 신 : 선 너비를 이전 상태로 재설정해야합니다.

float oldWidth = .0f; 
    glGetFloatv(GL_LINE_WIDTH, &oldWidth); 
    /// Set new line width 
    glLineWidth(mLineWidth); 
    .... 
    /// Reset previous line width 
    glLineWidth(oldWidth); 
0

Cocos2d-x 3.3부터 DrawNode 클래스를 사용하여 도형을 그릴 수 있습니다. Node에서 상속되므로 하위로 추가하거나 상위로 사용할 수 있습니다.

auto box = DrawNode::create(); 
box::drawRect(p1, p2, p3, Color4F(255, 255, 0, 255)); 
box::setLineWidth(2) 
this->addChild(box); // this being a node or scene 

void drawPoint(const Vec2& point, const float pointSize, const Color4F &color); 
void drawLine(const Vec2 &origin, const Vec2 &destination, const Color4F &color);` 

와 코코아에서 UIBezierPath 당신을 생각 나게 다른 멋진 물건이있다.