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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-03-30 04:27:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-03-30 04:27:36 +0300
commitf53017167bdd9854a65690c23cbc90cf1f9d37ea (patch)
tree75da45a520bed7e8464c255fb2cf5952c767bd34 /oscurart_tools/oscurart_objects.py
parentfba8c3db998fb8deb2e85037581b748ee895952c (diff)
Cleanup: warnings in descriptions (end with '.')
Diffstat (limited to 'oscurart_tools/oscurart_objects.py')
-rw-r--r--oscurart_tools/oscurart_objects.py22
1 files changed, 12 insertions, 10 deletions
diff --git a/oscurart_tools/oscurart_objects.py b/oscurart_tools/oscurart_objects.py
index dda2aa89..47b01378 100644
--- a/oscurart_tools/oscurart_objects.py
+++ b/oscurart_tools/oscurart_objects.py
@@ -28,7 +28,7 @@ from bpy_extras.object_utils import world_to_camera_view
class SearchAndSelectOt(bpy.types.Operator):
- """Search and select objects, by name."""
+ """Search and select objects, by name"""
bl_idname = "object.search_and_select_osc"
bl_label = "Search And Select"
bl_options = {"REGISTER", "UNDO"}
@@ -59,7 +59,7 @@ bpy.types.Scene.RenameObjectOt = bpy.props.StringProperty(default="Type here")
class renameObjectsOt (Operator):
- """Batch rename objects, supports selection order."""
+ """Batch rename objects, supports selection order"""
bl_idname = "object.rename_objects_osc"
bl_label = "Rename Objects"
bl_options = {"REGISTER", "UNDO"}
@@ -76,7 +76,7 @@ class renameObjectsOt (Operator):
# ---------------------------REMOVE MODIFIERS Y APPLY MODIFIERS-----------
class oscRemModifiers (Operator):
- """Removes all modifiers in the selected objects."""
+ """Removes all modifiers in the selected objects"""
bl_idname = "object.modifiers_remove_osc"
bl_label = "Remove modifiers"
bl_options = {"REGISTER", "UNDO"}
@@ -91,7 +91,7 @@ class oscRemModifiers (Operator):
class oscApplyModifiers (Operator):
- """Applys all the modifiers in the selected objects.(This does not work in objects with shapekeys)."""
+ """Applys all the modifiers in the selected objects.(This does not work in objects with shapekeys)"""
bl_idname = "object.modifiers_apply_osc"
bl_label = "Apply modifiers"
bl_options = {"REGISTER", "UNDO"}
@@ -161,7 +161,7 @@ def relinkObjects(self):
class OscRelinkObjectsBetween (Operator):
- """Copies from the selected object the scenes where this is. Its similar to "Objects to Scene"."""
+ """Copies from the selected object the scenes where this is. Its similar to 'Objects to Scene'"""
bl_idname = "object.relink_objects_between_scenes"
bl_label = "Relink Objects Between Scenes"
bl_options = {"REGISTER", "UNDO"}
@@ -211,7 +211,7 @@ def CopyObjectGroupsAndLayers(self):
class OscCopyObjectGAL (Operator):
- """Copies to scenes the layers setup in the active scene of the selected object."""
+ """Copies to scenes the layers setup in the active scene of the selected object"""
bl_idname = "object.copy_objects_groups_layers"
bl_label = "Copy Groups And Layers"
bl_options = {"REGISTER", "UNDO"}
@@ -327,7 +327,7 @@ def DefSetLayersToOtherScenes():
class SetLayersToOtherScenes (Operator):
- """Copies to scenes the layers setup in the active scene of the selected object."""
+ """Copies to scenes the layers setup in the active scene of the selected object"""
bl_idname = "object.set_layers_to_other_scenes"
bl_label = "Copy actual Layers to Other Scenes"
bl_options = {"REGISTER", "UNDO"}
@@ -376,7 +376,8 @@ def DefRenderOnlyInCamera():
class RenderOnlyInCamera (Operator):
- """Create two different groups, one group contains the objetcs that are in the camera frame, those that camera can see, and then a second group that contains the object that the camera can`t see."""
+ """Create two different groups, one group contains the objetcs that are in the camera frame, """ \
+ """those that camera can see, and then a second group that contains the object that the camera can`t see"""
bl_idname = "group.group_in_out_camera"
bl_label = "Make a group for objects in outer camera"
bl_options = {"REGISTER", "UNDO"}
@@ -508,7 +509,7 @@ def duplicateSymmetrical(self, disconect):
class oscDuplicateSymmetricalOp (Operator):
- """Creates a symmetrical copy on the X axys, also Links by drivers position, rotation and scale."""
+ """Creates a symmetrical copy on the X axys, also Links by drivers position, rotation and scale"""
bl_idname = "object.duplicate_object_symmetry_osc"
bl_label = "Oscurart Duplicate Symmetrical"
bl_options = {"REGISTER", "UNDO"}
@@ -536,7 +537,8 @@ def DefObjectToGroups():
class ObjectsToGroups (Operator):
- """Creates a group("_MESH") containing all the mesh type objects in the scene. Creates a group(“object_name”) per mesh type object."""
+ """Creates a group("_MESH") containing all the mesh type objects in the scene. """ \
+ """Creates a group(“object_name”) per mesh type object"""
bl_idname = "object.objects_to_groups"
bl_label = "Objects to Groups"
bl_options = {"REGISTER", "UNDO"}