[Bf-extensions-cvs] [905ecfa] master: Fix for patch obmat using undefined variable.

Lukas Tönne noreply at git.blender.org
Wed Dec 10 11:32:09 CET 2014


Commit: 905ecfacf58403f7eb2668c5389424730bd1a7b4
Author: Lukas Tönne
Date:   Wed Dec 10 11:31:41 2014 +0100
Branches: master
https://developer.blender.org/rBAC905ecfacf58403f7eb2668c5389424730bd1a7b4

Fix for patch obmat using undefined variable.

===================================================================

M	object_physics_meadow/blob.py

===================================================================

diff --git a/object_physics_meadow/blob.py b/object_physics_meadow/blob.py
index f979f82..c5b3389 100644
--- a/object_physics_meadow/blob.py
+++ b/object_physics_meadow/blob.py
@@ -286,4 +286,4 @@ def setup_blob_duplis(context, groundob, display_radius):
                     ob.matrix_world = dob.matrix_world
             else:
                 # move to the blob center
-                ob.matrix_world = dob.matrix_world
+                ob.matrix_world = Matrix.Translation(blob.loc)



More information about the Bf-extensions-cvs mailing list