The usual UI messages tweaks...
This commit is contained in:
@@ -876,7 +876,7 @@ static void rna_def_object_actuator(BlenderRNA *brna)
|
||||
|
||||
prop = RNA_def_property(srna, "use_add_character_location", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "flag", ACT_ADD_CHAR_LOC);
|
||||
RNA_def_property_ui_text(prop, "Add", "Toggles between ADD and SET character location");
|
||||
RNA_def_property_ui_text(prop, "Add", "Toggle between ADD and SET character location");
|
||||
RNA_def_property_update(prop, NC_LOGIC, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "use_servo_limit_x", PROP_BOOLEAN, PROP_NONE);
|
||||
@@ -896,7 +896,7 @@ static void rna_def_object_actuator(BlenderRNA *brna)
|
||||
|
||||
prop = RNA_def_property(srna, "use_character_jump", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "flag", ACT_CHAR_JUMP);
|
||||
RNA_def_property_ui_text(prop, "Jump", "Makes the character jump using the settings in the physics properties");
|
||||
RNA_def_property_ui_text(prop, "Jump", "Make the character jump using the settings in the physics properties");
|
||||
RNA_def_property_update(prop, NC_LOGIC, NULL);
|
||||
}
|
||||
|
||||
|
||||
@@ -684,7 +684,7 @@ void rna_FModifierEnvelope_points_remove(FModifier *fmod, ReportList *reports, P
|
||||
|
||||
/* test point is in range */
|
||||
if (index < 0 || index >= env->totvert) {
|
||||
BKE_report(reports, RPT_ERROR, "Control Point not in FEnvelopeModifier");
|
||||
BKE_report(reports, RPT_ERROR, "Control point not in Envelope F-Modifier");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -4228,10 +4228,10 @@ static void def_cmp_trackpos(StructRNA *srna)
|
||||
static void def_cmp_translate(StructRNA *srna)
|
||||
{
|
||||
static EnumPropertyItem translate_items[] = {
|
||||
{0, "NONE", 0, "None", "No wrapping on x and y"},
|
||||
{1, "XAXIS", 0, "X-Axis", "Wrap all pixels on the x-Axis"},
|
||||
{2, "YAXIS", 0, "Y-Axis", "Wrap all pixels on the y-Axis"},
|
||||
{3, "BOTH", 0, "Both axes", "Wrap all pixels on the both axes"},
|
||||
{0, "NONE", 0, "None", "No wrapping on X and Y"},
|
||||
{1, "XAXIS", 0, "X Axis", "Wrap all pixels on the X axis"},
|
||||
{2, "YAXIS", 0, "Y Axis", "Wrap all pixels on the Y axis"},
|
||||
{3, "BOTH", 0, "Both Axes", "Wrap all pixels on both axes"},
|
||||
{0, NULL, 0, NULL, NULL}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user