Fix T68393: lift hardcoded limit on particle children 'child_radius'

Reviewers: jacqueslucke

Maniphest Tasks: T68393

Differential Revision: https://developer.blender.org/D5436
This commit is contained in:
Philipp Oeser 2019-08-08 12:38:56 +02:00
parent 2fb42816cf
commit 5ca3bc7a14
Notes: blender-bot 2023-02-14 05:04:52 +01:00
Referenced by issue #68393, Hard limit on hair particle simple children radius
1 changed files with 2 additions and 1 deletions

View File

@ -3050,7 +3050,8 @@ static void rna_def_particle_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "child_radius", PROP_FLOAT, PROP_DISTANCE);
RNA_def_property_float_sdna(prop, NULL, "childrad");
RNA_def_property_range(prop, 0.0f, 10.0f);
RNA_def_property_range(prop, 0.0f, 100000.0f);
RNA_def_property_ui_range(prop, 0.0f, 10.0f, 0.1, 3);
RNA_def_property_ui_text(prop, "Child Radius", "Radius of children around parent");
RNA_def_property_update(prop, 0, "rna_Particle_redo_child");