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

17 lines
605 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-11-02 15:51:34 +01:00
self.add_input('NodeSocketBool', 'Linear On Local Axis')
self.add_input('NodeSocketBool', 'Angular On Local Axis')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketVector', 'Linear')
self.add_output('NodeSocketVector', 'Angular')