12 lines
362 B
Python
12 lines
362 B
Python
from lnx.logicnode.lnx_nodes import *
|
|
|
|
class LoadUrlNode(LnxLogicTreeNode):
|
|
"""Load the given URL in a new tab (works only for web browsers)."""
|
|
bl_idname = 'LNLoadUrlNode'
|
|
bl_label = 'Load URL'
|
|
lnx_version = 1
|
|
|
|
def lnx_init(self, context):
|
|
self.add_input('LnxNodeSocketAction', 'In')
|
|
self.add_input('LnxStringSocket', 'URL')
|