armory/blender/arm/logicnode/physics/LN_apply_force_at_location.py
2020-09-23 17:12:25 -03:00

20 lines
840 B
Python

from arm.logicnode.arm_nodes import *
class ApplyForceAtLocationNode(ArmLogicTreeNode):
"""Use to apply force to a rigid body in at a specific location."""
bl_idname = 'LNApplyForceAtLocationNode'
bl_label = 'Apply Force At Location'
arm_version = 1
def init(self, context):
super(ApplyForceAtLocationNode, self).init(context)
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmNodeSocketObject', 'Rigid Body')
self.add_input('NodeSocketVector', 'Force')
self.add_input('NodeSocketBool', 'Force On Local Axis')
self.add_input('NodeSocketVector', 'Location')
self.add_input('NodeSocketBool', 'Location On Local Axis')
self.add_output('ArmNodeSocketAction', 'Out')
add_node(ApplyForceAtLocationNode, category=PKG_AS_CATEGORY, section='force')