예제 #1
0
	void CCGrid3DAction::setVertex(cocos2d::ccGridSize pos, cocos2d::ccVertex3F vertex)
	{
		CCGrid3D *g = (CCGrid3D*)m_pTarget->getGrid();
		g->setVertex(pos, vertex);
	}
예제 #2
0
void CCGrid3DAction::setVertex(const CCPoint& position, const ccVertex3F& vertex)
{
    CCGrid3D *g = (CCGrid3D*)m_pTarget->getGrid();
    g->setVertex(position, vertex);
}
void CCGrid3DAction::setVertex(const ccGridSize& pos, const ccVertex3F& vertex)
{
    CCGrid3D *g = (CCGrid3D*)m_pTarget->getGrid();
    g->setVertex(pos, vertex);
}