armory/blender/arm/logicnode/native/LN_read_json.py
2021-07-20 20:53:37 +02:00

19 lines
580 B
Python

from arm.logicnode.arm_nodes import *
class ReadJsonNode(ArmLogicTreeNode):
"""Returns the content of the given JSON file.
@seeNode Write JSON"""
bl_idname = 'LNReadJsonNode'
bl_label = 'Read JSON'
arm_section = 'file'
arm_version = 1
def arm_init(self, context):
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmStringSocket', 'File')
self.add_input('ArmBoolSocket', 'Use cache', default_value=1)
self.add_output('ArmNodeSocketAction', 'Loaded')
self.add_output('ArmDynamicSocket', 'Dynamic')