armory/blender/arm/logicnode/navmesh_navigable_location.py
2017-04-08 00:34:45 +02:00

16 lines
439 B
Python

import bpy
from bpy.props import *
from bpy.types import Node, NodeSocket
from arm.logicnode.arm_nodes import *
class NavigableLocationNode(Node, ArmLogicTreeNode):
'''Navigable location node'''
bl_idname = 'LNNavigableLocationNode'
bl_label = 'Navigable Location'
bl_icon = 'GAME'
def init(self, context):
self.outputs.new('NodeSocketShader', 'Location')
add_node(NavigableLocationNode, category='Navmesh')