Closed
Description
Expected Behavior:
I want to be able to set the sweep, mass and rotInertia in the body config
BodyConf{}.UseSweep(sweep).UseMass(mass).UseRotInertia(rotInertia);
Actual Behavior:
I can only set them after creating the body
auto bodyID = CreateBody(world, BodyConf{});
auto body = GetBody(world, bodyId);
SetSweep(body, sweep);
SetMass(body, mass);
SetRotInertia(body, rotIntertia);
SetBody(world, bodyId, body);