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:
authormeta-androcto <meta.androcto1@gmail.com>2019-05-22 02:22:10 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-05-22 02:22:10 +0300
commita953af8c9e3ab7ee3fa2fec171a525f5f9b6cedd (patch)
tree5fcefca96909b7d4636842348b4d3e32b8d7b021 /btrace/__init__.py
parent07ec645862275ffe2d60e2d6481080aa0ae8b1f0 (diff)
btrace: initial update for 2.8
Diffstat (limited to 'btrace/__init__.py')
-rw-r--r--btrace/__init__.py47
1 files changed, 25 insertions, 22 deletions
diff --git a/btrace/__init__.py b/btrace/__init__.py
index fe0c4758..4e200a53 100644
--- a/btrace/__init__.py
+++ b/btrace/__init__.py
@@ -20,29 +20,30 @@
bl_info = {
"name": "Btrace",
"author": "liero, crazycourier, Atom, Meta-Androcto, MacKracken",
- "version": (1, 2, 1),
- "blender": (2, 78, 0),
- "location": "View3D > Tools",
+ "version": (1, 2, 2),
+ "blender": (2, 80, 0),
+ "location": "View3D",
"description": "Tools for converting/animating objects/particles into curves",
- "warning": "",
+ "warning": "Particle Tracers not working",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Curve/Btrace",
"category": "Add Curve"}
-if "bpy" in locals():
- import importlib
- importlib.reload(bTrace_props)
- importlib.reload(bTrace)
-else:
- from . import bTrace_props
- from . import bTrace
-
import bpy
+
+# if "bpy" in locals():
+# import importlib
+# importlib.reload(bTrace_props)
+# importlib.reload(bTrace)
+# else:
+# from . import bTrace_props
+# from . import bTrace
+from . import bTrace_props
+from . import bTrace
+
from bpy.types import AddonPreferences
-from .bTrace_props import (
- TracerProperties,
- addTracerObjectPanel,
-)
-from .bTrace import (
+from . bTrace_props import TracerProperties
+
+from . bTrace import (
OBJECT_OT_convertcurve,
OBJECT_OT_objecttrace,
OBJECT_OT_objectconnect,
@@ -56,6 +57,8 @@ from .bTrace import (
OBJECT_OT_materialChango,
OBJECT_OT_clearColorblender,
)
+
+from . bTrace_panel import addTracerObjectPanel
from bpy.props import (
EnumProperty,
PointerProperty,
@@ -104,21 +107,21 @@ classes = (
OBJECT_OT_meshfollow,
OBJECT_OT_materialChango,
OBJECT_OT_clearColorblender,
- btrace_preferences,
+ btrace_preferences
)
+
+# register, unregister = bpy.utils.register_classes_factory(classes)
def register():
for cls in classes:
bpy.utils.register_class(cls)
bpy.types.WindowManager.curve_tracer = PointerProperty(type=TracerProperties)
-
def unregister():
for cls in classes:
bpy.utils.unregister_class(cls)
del bpy.types.WindowManager.curve_tracer
-
-if __name__ == "__main__":
- register()
+# if __name__ == "__main__":
+# register()