armory/blender/arm/logicnode/physics/LN_get_rb_velocity.py

16 lines
526 B
Python
Raw Normal View History

2018-04-13 07:05:54 +02:00
from arm.logicnode.arm_nodes import *
class GetVelocityNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the world velocity of the given rigid body."""
2018-04-13 07:05:54 +02:00
bl_idname = 'LNGetVelocityNode'
2020-09-29 18:38:17 +02:00
bl_label = 'Get RB Velocity'
arm_version = 1
2018-04-13 07:05:54 +02:00
def init(self, context):
super(GetVelocityNode, self).init(context)
2020-10-05 19:55:56 +02:00
self.add_input('ArmNodeSocketObject', 'RB')
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketVector', 'Linear')
self.add_output('NodeSocketVector', 'Angular')
2018-04-13 07:05:54 +02:00
add_node(GetVelocityNode, category=PKG_AS_CATEGORY)