[Bf-blender-cvs] [d99ff7f] particles_refactor: Renamed RNA property of the particle system in the psys modifier.

Lukas Tönne noreply at git.blender.org
Tue Apr 22 12:05:34 CEST 2014


Commit: d99ff7fbeeb6ce2e52d9457fe44c64c3a43efeeb
Author: Lukas Tönne
Date:   Thu Dec 12 11:47:48 2013 +0100
https://developer.blender.org/rBd99ff7fbeeb6ce2e52d9457fe44c64c3a43efeeb

Renamed RNA property of the particle system in the psys modifier.

===================================================================

M	source/blender/makesrna/intern/rna_modifier.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 7c11a37..be9b853 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -3661,7 +3661,8 @@ static void rna_def_modifier_nparticlesystem(BlenderRNA *brna)
 	RNA_def_struct_sdna(srna, "NParticleSystemModifierData");
 	RNA_def_struct_ui_icon(srna, ICON_MOD_PARTICLES);
 
-	prop = RNA_def_property(srna, "psys", PROP_POINTER, PROP_NONE);
+	prop = RNA_def_property(srna, "particle_system", PROP_POINTER, PROP_NONE);
+	RNA_def_property_pointer_sdna(prop, NULL, "psys");
 	RNA_def_property_ui_text(prop, "Particle System", "Particle data");
 }




More information about the Bf-blender-cvs mailing list