halved physics solve iterations to 50 with no clear change
This commit is contained in:
parent
3e531e1b6e
commit
98c7f97c43
|
@ -53,7 +53,7 @@ void physics_entity_solve_contacts(PhysicsEntity self, List* contacts) {
|
|||
|
||||
// attempt to solve constraints
|
||||
int done;
|
||||
for(size_t iteration = 100; iteration != 0; --iteration) {
|
||||
for(size_t iteration = 50; iteration != 0; --iteration) {
|
||||
done = 1;
|
||||
list_foreach(Contact*, contact, contacts) {
|
||||
if(!_internal_default_contact_solver(body, contact, pre_solve))
|
||||
|
|
Loading…
Reference in a new issue