Skip to content

Commit 6c7862b

Browse files
committed
UPBGE: Allow soft body cluster and position iteration to 1000.
1 parent 772eb75 commit 6c7862b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/blender/makesrna/intern/rna_object_force.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1533,12 +1533,12 @@ static void rna_def_game_softbody(BlenderRNA *brna)
15331533

15341534
prop = RNA_def_property(srna, "location_iterations", PROP_INT, PROP_NONE);
15351535
RNA_def_property_int_sdna(prop, NULL, "piterations");
1536-
RNA_def_property_range(prop, 0, 10);
1536+
RNA_def_property_range(prop, 0, 1000);
15371537
RNA_def_property_ui_text(prop, "Position Iterations", "Position solver iterations");
15381538

15391539
prop = RNA_def_property(srna, "cluster_iterations", PROP_INT, PROP_NONE);
15401540
RNA_def_property_int_sdna(prop, NULL, "numclusteriterations");
1541-
RNA_def_property_range(prop, 1, 128);
1541+
RNA_def_property_range(prop, 1, 1000);
15421542
RNA_def_property_ui_text(prop, "Cluster Iterations", "Number of cluster iterations");
15431543

15441544
/* Booleans */

0 commit comments

Comments
 (0)