armory/blender/arm/logicnode/value_get_location.py

17 lines
468 B
Python
Raw Normal View History

2017-04-14 20:38:50 +02:00
import bpy
from bpy.props import *
from bpy.types import Node, NodeSocket
from arm.logicnode.arm_nodes import *
class GetLocationNode(Node, ArmLogicTreeNode):
'''Get location node'''
bl_idname = 'LNGetLocationNode'
bl_label = 'Get Location'
2018-12-18 23:48:38 +01:00
bl_icon = 'QUESTION'
2017-04-14 20:38:50 +02:00
def init(self, context):
self.inputs.new('ArmNodeSocketObject', 'Object')
self.outputs.new('NodeSocketVector', 'Location')
add_node(GetLocationNode, category='Value')