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

19 lines
516 B
Python
Raw Normal View History

2017-04-04 23:11:31 +02:00
from arm.logicnode.arm_nodes import *
class GetContactsNode(ArmLogicTreeNode):
2020-09-28 15:58:41 +02:00
"""Returns an array with all objects that are colliding with the
given object.
@seeNode Get First Contact
"""
2017-04-04 23:11:31 +02:00
bl_idname = 'LNGetContactsNode'
2020-09-29 18:38:17 +02:00
bl_label = 'Get RB Contacts'
2020-10-27 19:44:37 +01:00
arm_section = 'contact'
arm_version = 1
2017-04-04 23:11:31 +02:00
def init(self, context):
super(GetContactsNode, self).init(context)
2020-10-05 19:55:56 +02:00
self.add_input('ArmNodeSocketObject', 'RB')
2020-11-17 16:01:15 +01:00
2020-09-20 20:10:01 +02:00
self.add_output('ArmNodeSocketArray', 'Contacts')