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:
authorMaurice Raybaud <mauriceraybaud@hotmail.fr>2021-06-09 04:13:10 +0300
committerMaurice Raybaud <mauriceraybaud@hotmail.fr>2021-06-09 04:13:10 +0300
commitf86f25e62217264495d05f116ccb09d575fe9841 (patch)
treeece4a4e5c56e07342352187b751c0dd21fb5ac53 /render_povray/scripting_properties.py
parent3a409083e7dbc8e5fef5a68f6ac5be275acc5ca8 (diff)
POV: Code formatting and bugfixes
* fix: more imports cleanup and formatting * add: hair shape (from old MaterialStrand for now) * add: pixel / Non Blender units strand width * fix: an exception handling of df3_library * fix: gas flow_type typo
Diffstat (limited to 'render_povray/scripting_properties.py')
-rwxr-xr-xrender_povray/scripting_properties.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/render_povray/scripting_properties.py b/render_povray/scripting_properties.py
index 3e743da3..d4529c18 100755
--- a/render_povray/scripting_properties.py
+++ b/render_povray/scripting_properties.py
@@ -17,17 +17,17 @@
# ##### END GPL LICENSE BLOCK #####
# <pep8 compliant>
-import bpy
"""Declare pov native file syntax properties controllable in UI hooks and text blocks"""
+import bpy
from bpy.utils import register_class, unregister_class
from bpy.types import PropertyGroup
from bpy.props import EnumProperty, PointerProperty
-###############################################################################
+# ---------------------------------------------------------------- #
# Text POV properties.
-###############################################################################
+# ---------------------------------------------------------------- #
class RenderPovSettingsText(PropertyGroup):
@@ -42,7 +42,9 @@ class RenderPovSettingsText(PropertyGroup):
)
-classes = (RenderPovSettingsText,)
+classes = (
+ RenderPovSettingsText,
+)
def register():