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_render.py
parentfba8c3db998fb8deb2e85037581b748ee895952c (diff)
Cleanup: warnings in descriptions (end with '.')
Diffstat (limited to 'oscurart_tools/oscurart_render.py')
-rw-r--r--oscurart_tools/oscurart_render.py25
1 files changed, 16 insertions, 9 deletions
diff --git a/oscurart_tools/oscurart_render.py b/oscurart_tools/oscurart_render.py
index c3dbe8a9..58ecc526 100644
--- a/oscurart_tools/oscurart_render.py
+++ b/oscurart_tools/oscurart_render.py
@@ -101,7 +101,8 @@ def defRenderAll(frametype, scenes):
class renderAll (Operator):
- """Renders all scenes executing the Oscurart overrides if those are set up. Saves the renders in their respective folders using the scenes and render layers names."""
+ """Renders all scenes executing the Oscurart overrides if those are set up. """ \
+ """Saves the renders in their respective folders using the scenes and render layers names"""
bl_idname = "render.render_all_scenes_osc"
bl_label = "Render All Scenes"
@@ -118,7 +119,8 @@ bpy.types.Scene.use_render_scene = bpy.props.BoolProperty()
class renderSelected (Operator):
- """Renders the seleccted scenes on the checkboxes, executing the Oscurart overrides if it was set up. Saves the renders in their respective folders using the scenes and render layers names."""
+ """Renders the seleccted scenes on the checkboxes, executing the Oscurart overrides if it was set up. """ \
+ """Saves the renders in their respective folders using the scenes and render layers names"""
bl_idname = "render.render_selected_scenes_osc"
bl_label = "Render Selected Scenes"
@@ -134,7 +136,8 @@ class renderSelected (Operator):
class renderCurrent (Operator):
- """Renders the active scene executing the Oscurart overrides if it was set up. Saves the renders in their respective folders using the scenes and render layers names."""
+ """Renders the active scene executing the Oscurart overrides if it was set up. """ \
+ """Saves the renders in their respective folders using the scenes and render layers names"""
bl_idname = "render.render_current_scene_osc"
bl_label = "Render Current Scene"
@@ -176,7 +179,8 @@ def OscRenderCropFunc():
class renderCrop (Operator):
- """It renders croping the image in to a X number of pieces. Usefull for rendering really big images."""
+ """It renders croping the image in to a X number of pieces. """ \
+ """Useful for rendering really big images"""
bl_idname = "render.render_crop_osc"
bl_label = "Render Crop: Render!"
@@ -260,7 +264,7 @@ def defoscBatchMaker(TYPE, BIN):
class oscBatchMaker (Operator):
- """It creates .bat(win) or .sh(unix) file, to execute and render from Console/Terminal."""
+ """It creates .bat(win) or .sh(unix) file, to execute and render from Console/Terminal"""
bl_idname = "file.create_batch_maker_osc"
bl_label = "Make render batch"
bl_options = {'REGISTER', 'UNDO'}
@@ -381,7 +385,10 @@ while REPITE:
class oscPythonBatchMaker (Operator):
- """It creates a file as “Make Render Batch” but it requires Phyton installed and the respective environment variables set up. If the render crahses, the batch automatically erase the broken frame and writes it again. Its not recommended if there is more than one machine rendering."""
+ """It creates a file as “Make Render Batch” but it requires Phyton installed and """ \
+ """the respective environment variables set up. """ \
+ """If the render crahses, the batch automatically erase the broken frame and writes it again. """ \
+ """Its not recommended if there is more than one machine rendering"""
bl_idname = "file.create_batch_python"
bl_label = "Make Batch Python"
bl_options = {'REGISTER', 'UNDO'}
@@ -412,7 +419,7 @@ bpy.utils.register_class(VarColArchivos)
class SumaFile(Operator):
- """Look for broken rendered files and shows it."""
+ """Look for broken rendered files and shows it"""
bl_idname = "object.add_broken_file"
bl_label = "Add Broken Files"
@@ -435,7 +442,7 @@ class SumaFile(Operator):
class ClearFile(Operator):
- """Erase the list of broken frames."""
+ """Erase the list of broken frames"""
bl_idname = "object.clear_broken_file"
bl_label = "Clear Broken Files"
@@ -445,7 +452,7 @@ class ClearFile(Operator):
class DeleteFiles(Operator):
- """Erase the broken frames files from Disk."""
+ """Erase the broken frames files from Disk"""
bl_idname = "object.delete_broken_file"
bl_label = "Delete Broken Files"