armory/blender/arm/logicnode/physics_apply_force_at_location.py
2019-04-09 17:15:20 +02:00

21 lines
738 B
Python

import bpy
from bpy.props import *
from bpy.types import Node, NodeSocket
from arm.logicnode.arm_nodes import *
class ApplyForceAtLocationNode(Node, ArmLogicTreeNode):
'''Apply force at location node'''
bl_idname = 'LNApplyForceAtLocationNode'
bl_label = 'Apply Force At Location'
bl_icon = 'QUESTION'
def init(self, context):
self.inputs.new('ArmNodeSocketAction', 'In')
self.inputs.new('ArmNodeSocketObject', 'Object')
self.inputs.new('NodeSocketVector', 'Force')
self.inputs.new('NodeSocketVector', 'Location')
self.inputs.new('NodeSocketBool', 'On Local Axis')
self.outputs.new('ArmNodeSocketAction', 'Out')
add_node(ApplyForceAtLocationNode, category='Physics')