只需一次又一次地施加重力
我的代码将重力应用于我的世界中的任何物体,我有一个球,在它因重力而下落后,我需要它再次升起并再次因重力而下落。 所以它会掉下来,但是当我把它放回去时,它不会再掉下来。为什么 ??
我把每一帧都称为 ::
-(void)thick:(ccTime) dt
{
world->Step(dt,10,10);
for(b2Body *b=world->GetBodyList(); b; b=b->GetNext())
{
if(b->GetUserData() !=NULL )
{
CCSprite *bondanind1=(CCSprite *) b->GetUserData();
bondanind1.position=ccp( b->GetPosition().x * PTM_RATIO, b->GetPosition().y * PTM_RATIO ) ;
//bondanind.rotation=-1*CC_RADIANS_TO_DEGREES(b->GetAngle());
}
}
if(bondanind.position.y<0 )
bondanind.position=ccp(300,300);
}
这样球就会上升并停留在那里。 重力不是对任何物体、任何时间、每一帧都起作用吗???
多谢
my code applying gravity on any body in my world, and i have a ball , that after it falls down by gravity, i need it to come up again and fall by gravity again.
so it falls down , BUT when i put it back up , it wont fall down again. WHY ??
I call this every frame ::
-(void)thick:(ccTime) dt
{
world->Step(dt,10,10);
for(b2Body *b=world->GetBodyList(); b; b=b->GetNext())
{
if(b->GetUserData() !=NULL )
{
CCSprite *bondanind1=(CCSprite *) b->GetUserData();
bondanind1.position=ccp( b->GetPosition().x * PTM_RATIO, b->GetPosition().y * PTM_RATIO ) ;
//bondanind.rotation=-1*CC_RADIANS_TO_DEGREES(b->GetAngle());
}
}
if(bondanind.position.y<0 )
bondanind.position=ccp(300,300);
}
so the ball comes up and stay there .
doesnt the gravity works on any body, all time, every frame ????
thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是显而易见的。你应该根据你的情况改变身体的位置,而不是精灵的位置。改变条件也看起来像这样:
现在你的身体在 y 位置值小于零后继续下落。
It's obvious. You should change the position of the body in your condition, not of sprite. And change the condition too look like this:
Now your body just continues falling after it's y position value is less then zero.