forked from LeenkxTeam/LNXSDK
t3du - CA Updates
This commit is contained in:
@ -1,11 +1,20 @@
|
|||||||
from lnx.logicnode.lnx_nodes import *
|
from lnx.logicnode.lnx_nodes import *
|
||||||
|
|
||||||
class ChromaticAberrationGetNode(LnxLogicTreeNode):
|
class ChromaticAberrationGetNode(LnxLogicTreeNode):
|
||||||
"""Returns the chromatic aberration post-processing settings."""
|
"""Returns the chromatic aberration post-processing settings.
|
||||||
|
Type: Simple 0 Spectral 1.
|
||||||
|
"""
|
||||||
bl_idname = 'LNChromaticAberrationGetNode'
|
bl_idname = 'LNChromaticAberrationGetNode'
|
||||||
bl_label = 'Get CA Settings'
|
bl_label = 'Get CA Settings'
|
||||||
lnx_version = 1
|
lnx_version = 2
|
||||||
|
|
||||||
def lnx_init(self, context):
|
def lnx_init(self, context):
|
||||||
self.add_output('LnxFloatSocket', 'Strength')
|
self.add_output('LnxFloatSocket', 'Strength')
|
||||||
self.add_output('LnxFloatSocket', 'Samples')
|
self.add_output('LnxFloatSocket', 'Samples')
|
||||||
|
self.add_output('LnxIntSocket', 'Type')
|
||||||
|
|
||||||
|
def get_replacement_node(self, node_tree: bpy.types.NodeTree):
|
||||||
|
if self.lnx_version not in (0, 1):
|
||||||
|
raise LookupError()
|
||||||
|
|
||||||
|
return NodeReplacement.Identity(self)
|
Reference in New Issue
Block a user