armory/blender/arm/logicnode/array/LN_array.py

27 lines
906 B
Python
Raw Normal View History

2017-04-08 00:34:45 +02:00
from arm.logicnode.arm_nodes import *
class ArrayNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Stores the given array as a variable."""
2017-04-08 00:34:45 +02:00
bl_idname = 'LNArrayNode'
2020-09-08 22:08:29 +02:00
bl_label = 'Array Dynamic'
arm_version = 1
2017-04-08 00:34:45 +02:00
def __init__(self):
array_nodes[str(id(self))] = self
2017-04-08 00:34:45 +02:00
def init(self, context):
super(ArrayNode, self).init(context)
2020-09-08 22:08:29 +02:00
self.add_output('ArmNodeSocketArray', 'Array', is_var=True)
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketInt', 'Length')
2017-04-08 00:34:45 +02:00
def draw_buttons(self, context, layout):
row = layout.row(align=True)
op = row.operator('arm.node_add_input', text='New', icon='PLUS', emboss=True)
op.node_index = str(id(self))
2017-04-08 20:05:35 +02:00
op.socket_type = 'NodeSocketShader'
2017-04-08 00:34:45 +02:00
op2 = row.operator('arm.node_remove_input', text='', icon='X', emboss=True)
op2.node_index = str(id(self))
add_node(ArrayNode, category=PKG_AS_CATEGORY, section='variable')