armory/blender/arm/logicnode/physics_apply_force_at_location.py

21 lines
738 B
Python
Raw Normal View History

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'
2018-12-18 23:48:38 +01:00
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')
2019-04-09 17:15:20 +02:00
self.inputs.new('NodeSocketBool', 'On Local Axis')
self.outputs.new('ArmNodeSocketAction', 'Out')
add_node(ApplyForceAtLocationNode, category='Physics')