要獲取cctouchesbegan坐標,可以在cctouchesbegan方法中使用touch中的getLocation方法來獲取觸摸點的坐標。以下是一個示例代碼:
bool YourScene::ccTouchBegan(cocos2d::CCTouch* touch, cocos2d::CCEvent* event)
{
// 獲取觸摸點坐標
CCPoint touchPos = touch->getLocation();
// 在這里可以對觸摸點的坐標進行處理
return true;
}
在這個示例中,touchPos變量將包含觸摸點的坐標。您可以在這里對這個坐標進行任何您想要的處理。