我需要以下逻辑。
1. box2d object is flying top of the screen.
2. If make long mouse click, the flying object come down and hit ground.
3. If release the mouse click, then the object move to top.
我使用
做了第一点 body_->SetGravityScale(0);
body_->SetLinearVelocity(velocity);
我将如何从上到下再次从下到上移动?
提前致谢。
答案 0 :(得分:1)
您执行以下操作:
bool mainscene::ccTouchBegan(cocos2d::CCTouch *ptouch, cocos2d::CCEvent *pEvent)
{
this->schedule(schedule_selector(HelloWorld::longpresscoding));
}
void mainscene::ccTouchEnded(cocos2d::CCTouch *ptouch, cocos2d::CCEvent *pEvent)
{
this->unschedule(schedule_selector(HelloWorld::longpresscoding));
}
void mainscene::longpresscoding()
{
CCLOG("LONG Press");
}
它会帮助你。
答案 1 :(得分:0)
我将假设你实际上有一些东西在地上(如地平面)让身体能够击中。
首先,要检测长按鼠标,并假设您使用的是cocos2d-x,您将需要一种方法来检测鼠标长按。
为此,您需要关闭场景中的触摸事件或创建一个处理长触摸的类。为此,这里有几个选项: