forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
29
leenkx/blender/lnx/logicnode/custom/LN_seed_torrent.py
Normal file
29
leenkx/blender/lnx/logicnode/custom/LN_seed_torrent.py
Normal file
@ -0,0 +1,29 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
|
||||
class SeedTorrentNode(LnxLogicTreeNode):
|
||||
"""Seed Torrent"""
|
||||
bl_idname = 'LNSeedTorrentNode'
|
||||
bl_label = 'Seed Torrent'
|
||||
bl_description = 'Seed a torrent file from the network'
|
||||
lnx_category = 'Leenkx'
|
||||
lnx_version = 1
|
||||
|
||||
def __init__(self):
|
||||
array_nodes[str(id(self))] = self
|
||||
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketAction', 'In')
|
||||
self.add_input('LnxDynamicSocket', 'Connection')
|
||||
self.add_input('LnxDynamicSocket', 'Opts [Map]')
|
||||
self.add_input('LnxDynamicSocket', 'Data')
|
||||
|
||||
self.add_output('LnxNodeSocketAction', 'Out')
|
||||
self.add_output('LnxDynamicSocket', 'Torrent')
|
||||
self.add_output('LnxNodeSocketAction', 'Done')
|
||||
|
||||
|
||||
def register():
|
||||
add_category('Leenkx', icon='ORIENTATION_CURSOR')
|
||||
SeedTorrentNode.on_register()
|
Reference in New Issue
Block a user