I see there is an option for default max angular velocity, but there isnt one for linear velocity
can be done from code:
foreach (var rb in GameObject.FindObjectsOfType<Rigidbody>())
rb.maxLinearVelocity = 25;
but thats modifying each rigidbody manually, why isnt there such an option like angular velocity has?