Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
b2Bodyの線形速度方向を特定の範囲内に強制したいと思います。
これを行う簡単な方法の 1 つは、手動で設定することです。このような:
// pseudo code velocity = body.GetLinearVelocity(); if(velocity > maxVelocity) velocity = maxVelocity; body.SetLinearVelocity(velocity);