Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Beck <software@plasmasolutions.de>2020-12-11 16:06:07 +0300
committerThomas Beck <software@plasmasolutions.de>2020-12-11 16:11:17 +0300
commit7c8e01341f87ae1d75b492d36fa24960acf356fd (patch)
tree52d9513314196da03d4237c3087b1f03b31aad25 /source/blender/makesrna/intern/rna_object.c
parentbfb6fce6594e9cf133bd18aee311c1e5e32dc799 (diff)
UI: Correct help text in the Parent panel
Tracking Axis and Up Axis were still referring to duplis (DupliFrame) - changed it to be in line with Aaron's info about them in our manual
Diffstat (limited to 'source/blender/makesrna/intern/rna_object.c')
-rw-r--r--source/blender/makesrna/intern/rna_object.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index ee115b74379..4e170599ee6 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -2751,8 +2751,8 @@ static void rna_def_object(BlenderRNA *brna)
RNA_def_property_ui_text(
prop,
"Track Axis",
- "Axis that points in 'forward' direction (applies to InstanceFrame when "
- "parent 'Follow' is enabled)");
+ "Axis that points in the 'forward' direction (applies to Instance Vertices when "
+ "Align to Vertex Normal is enabled)");
RNA_def_property_update(prop, NC_OBJECT | ND_DRAW, "rna_Object_internal_update");
prop = RNA_def_property(srna, "up_axis", PROP_ENUM, PROP_NONE);
@@ -2761,8 +2761,8 @@ static void rna_def_object(BlenderRNA *brna)
RNA_def_property_ui_text(
prop,
"Up Axis",
- "Axis that points in the upward direction (applies to InstanceFrame when "
- "parent 'Follow' is enabled)");
+ "Axis that points in the upward direction (applies to Instance Vertices when "
+ "Align to Vertex Normal is enabled)");
RNA_def_property_update(prop, NC_OBJECT | ND_DRAW, "rna_Object_internal_update");
/* proxy */