我想限制body可以移动的最大速度。问题是,即使我做了类似thisanswer的事情建议:/*afterapplyingforcesfrominputforexample*/b2Vec2vel=body->GetLinearVelocity();floatspeed=vel.Normalize();//normalizesvectorandreturnslengthif(speed>maxSpeed)body->SetLinearVelocity(maxSpeed*vel);例如,如果在限制速度之前我对body施加了一些巨大的力会怎么样?即使线速度暂时被限制为maxSpeed,在下一个