diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py index 59c4f88251d..63b928c952b 100644 --- a/release/scripts/startup/bl_operators/clip.py +++ b/release/scripts/startup/bl_operators/clip.py @@ -77,11 +77,11 @@ class CLIP_OT_track_to_empty(Operator): return {'FINISHED'} -class CLIP_OT_tracks_to_mesh(Operator): - """Create vertex cloud using coordinates of tracks""" +class CLIP_OT_bundles_to_mesh(Operator): + """Create vertex cloud using coordinates of reconstructed tracks""" - bl_idname = "clip.tracks_to_mesh" - bl_label = "Tracks to Mesh" + bl_idname = "clip.bundles_to_mesh" + bl_label = "3D Markers to Mesh" bl_options = {'UNDO', 'REGISTER'} @classmethod diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py index a70d632e8b0..eb67f6b3ccc 100644 --- a/release/scripts/startup/bl_ui/space_clip.py +++ b/release/scripts/startup/bl_ui/space_clip.py @@ -210,7 +210,7 @@ class CLIP_PT_tools_geometry(Panel): def draw(self, context): layout = self.layout - layout.operator("clip.tracks_to_mesh") + layout.operator("clip.bundles_to_mesh") layout.operator("clip.track_to_empty") @@ -402,15 +402,15 @@ class CLIP_PT_display(Panel): col.prop(sc, "show_marker_search", text="Search") col.prop(sc, "show_pyramid_levels", text="Pyramid") - col.prop(sc, "show_track_path", text="Track Path") + col.prop(sc, "show_track_path", text="Path") row = col.row() row.active = sc.show_track_path row.prop(sc, "path_length", text="Length") col.prop(sc, "show_disabled", "Disabled Tracks") - col.prop(sc, "show_bundles", text="Bundles") + col.prop(sc, "show_bundles", text="3D Markers") - col.prop(sc, "show_names", text="Track Names and Status") + col.prop(sc, "show_names", text="Names and Status") col.prop(sc, "show_tiny_markers", text="Compact Markers") col.prop(sc, "show_grease_pencil", text="Grease Pencil") diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py index 295b7421017..ce500b20d78 100644 --- a/release/scripts/startup/bl_ui/space_view3d.py +++ b/release/scripts/startup/bl_ui/space_view3d.py @@ -2203,7 +2203,7 @@ class VIEW3D_PT_view3d_motion_tracking(Panel): col = layout.column() col.active = view.show_reconstruction - col.prop(view, "show_tracks_name") + col.prop(view, "show_bundle_names") col.prop(view, "show_camera_path") col.label(text="Tracks:") col.prop(view, "tracks_draw_type", text="") diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index a33622cf8a1..9f6f0bb7802 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -1612,9 +1612,9 @@ static void rna_def_space_view3d(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Show Camera Path", "Show reconstructed camera path"); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_VIEW3D, NULL); - prop= RNA_def_property(srna, "show_tracks_name", PROP_BOOLEAN, PROP_NONE); + prop= RNA_def_property(srna, "show_bundle_names", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag2", V3D_SHOW_BUNDLENAME); - RNA_def_property_ui_text(prop, "Show Track Names", "Show names for tracks objects"); + RNA_def_property_ui_text(prop, "Show 3D Marker Names", "Show names for reconstructed tracks objects"); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_VIEW3D, NULL); /* region */ @@ -2915,7 +2915,7 @@ static void rna_def_space_clip(BlenderRNA *brna) /* show bundles */ prop= RNA_def_property(srna, "show_bundles", PROP_BOOLEAN, PROP_NONE); - RNA_def_property_ui_text(prop, "Show Bundles", "Show projection of bundles into footage"); + RNA_def_property_ui_text(prop, "Show Bundles", "Show projection of 3D markers into footage"); RNA_def_property_boolean_sdna(prop, NULL, "flag", SC_SHOW_BUNDLES); RNA_def_property_update(prop, NC_SPACE|ND_SPACE_CLIP, NULL);