Skip to content
Snippets Groups Projects
Commit e7d0ba4f authored by meta-androcto's avatar meta-androcto
Browse files

btrace: Fix particle modes, remove warning

parent f54338c6
Branches
Tags
No related merge requests found
......@@ -20,11 +20,11 @@
bl_info = {
"name": "Btrace",
"author": "liero, crazycourier, Atom, Meta-Androcto, MacKracken",
"version": (1, 2, 2),
"version": (1, 2, 3),
"blender": (2, 80, 0),
"location": "View3D > Sidebar > Create Tab",
"description": "Tools for converting/animating objects/particles into curves",
"warning": "Particle Tracers not working",
"warning": "",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Curve/Btrace",
"category": "Add Curve"}
......
......@@ -293,7 +293,7 @@ class OBJECT_OT_particletrace(Operator):
Btrace = bpy.context.window_manager.curve_tracer
particle_step = Btrace.particle_step # step size in frames
obj = bpy.context.object
obj = bpy.context.evaluated_depsgraph_get().objects.get(ob.name, None)
obj = bpy.context.evaluated_depsgraph_get().objects.get(obj.name, None)
ps = obj.particle_systems.active
curvelist = []
curve_handle = Btrace.curve_handle
......@@ -375,7 +375,7 @@ class OBJECT_OT_traceallparticles(Operator):
def execute(self, context):
try:
obj = context.object
eval_ob = bpy.context.evaluated_depsgraph_get().objects.get(obj.name, None)
obj = bpy.context.evaluated_depsgraph_get().objects.get(obj.name, None)
ps = obj.particle_systems.active
setting = ps.settings
......@@ -385,7 +385,7 @@ class OBJECT_OT_traceallparticles(Operator):
"Grid distribution mode for particles not supported")
return{'CANCELLED'}
Btrace = context.window_manager.curve_tracer
Btrace = bpy.context.window_manager.curve_tracer
# Get frame start
particle_f_start = Btrace.particle_f_start
# Get frame end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment