[Bf-blender-cvs] [777836c] alembic_basic_io: Improve object path tooltip.

Kévin Dietrich noreply at git.blender.org
Tue Jul 12 16:04:05 CEST 2016


Commit: 777836c0bf9fa9c41dc54d894761cb34ed9bd905
Author: Kévin Dietrich
Date:   Tue Jul 12 11:47:00 2016 +0200
Branches: alembic_basic_io
https://developer.blender.org/rB777836c0bf9fa9c41dc54d894761cb34ed9bd905

Improve object path tooltip.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c
index 381716e..f44ccf1 100644
--- a/source/blender/makesrna/intern/rna_constraint.c
+++ b/source/blender/makesrna/intern/rna_constraint.c
@@ -2592,7 +2592,7 @@ static void rna_def_constraint_transform_cache(BlenderRNA *brna)
 	RNA_def_property_update(prop, 0, "rna_Constraint_dependency_update");
 
 	prop = RNA_def_property(srna, "abc_object_path", PROP_STRING, PROP_NONE);
-	RNA_def_property_ui_text(prop, "Object Path", "Path to the object in the Alembic archive");
+	RNA_def_property_ui_text(prop, "Object Path", "Path to the object in the Alembic archive used to lookup the transform matrix");
 	RNA_def_property_update(prop, 0, "rna_Constraint_update");
 }
 
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index bf63fac..30bc588 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -4284,7 +4284,7 @@ static void rna_def_modifier_meshseqcache(BlenderRNA *brna)
 	RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update");
 
 	prop = RNA_def_property(srna, "abc_object_path", PROP_STRING, PROP_NONE);
-	RNA_def_property_ui_text(prop, "Object", "Path to the object in the Alembic archive");
+	RNA_def_property_ui_text(prop, "Object Path", "Path to the object in the Alembic archive used to lookup geometric data");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	prop = RNA_def_property(srna, "velocity_cache", PROP_FLOAT, PROP_NONE);




More information about the Bf-blender-cvs mailing list