Files
LNXSDK/leenkx/blender/lnx/logicnode/physics/LN_remove_physics_constraint.py

14 lines
432 B
Python

from lnx.logicnode.lnx_nodes import *
class RemovePhysicsConstraintNode(LnxLogicTreeNode):
bl_idname = 'LNRemovePhysicsConstraintNode'
bl_label = 'Remove Physics Constraint'
lnx_section = 'props'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketAction', 'In')
self.add_input('LnxNodeSocketObject', 'Pivot Object')
self.add_output('LnxNodeSocketAction', 'Out')