From 36a37503723d7612464fceb6236e30fb1a247113 Mon Sep 17 00:00:00 2001 From: jb Date: Fri, 19 Feb 2016 22:34:36 +0100 Subject: [PATCH] Only one underscode in make_physical_movable (ack !) --- korman/properties/modifiers/anim.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korman/properties/modifiers/anim.py b/korman/properties/modifiers/anim.py index 556d693..77be132 100644 --- a/korman/properties/modifiers/anim.py +++ b/korman/properties/modifiers/anim.py @@ -131,7 +131,7 @@ class PlasmaAnimationModifier(PlasmaModifierProperties): def key_name(self): return "{}_(Entire Animation)".format(self.id_data.name) - def __make_physical_movable(self, so): + def _make_physical_movable(self, so): sim = so.sim if sim is not None: sim = sim.object @@ -153,7 +153,7 @@ class PlasmaAnimationModifier(PlasmaModifierProperties): def post_export(self, exporter, bo, so): # If this object has a physical, we need to tell the simulation iface that it can be animated - self.__make_physical_movable(so) + self._make_physical_movable(so) class AnimGroupObject(bpy.types.PropertyGroup):