armory/blender/arm/logicnode/action_print.py
2017-04-08 20:05:35 +02:00

18 lines
480 B
Python

import bpy
from bpy.props import *
from bpy.types import Node, NodeSocket
from arm.logicnode.arm_nodes import *
class PrintNode(Node, ArmLogicTreeNode):
'''Print node'''
bl_idname = 'LNPrintNode'
bl_label = 'Print'
bl_icon = 'GAME'
def init(self, context):
self.inputs.new('ArmNodeSocketAction', 'In')
self.inputs.new('NodeSocketShader', 'Value')
self.outputs.new('ArmNodeSocketAction', 'Out')
add_node(PrintNode, category='Action')