forked from LeenkxTeam/LNXSDK
Repe [T3DU] Update - 31f26d171bba0355ce2a77031e3aad4c64dbc7e9
This commit is contained in:
18
leenkx/blender/lnx/logicnode/curve/LN_get_curve_data.py
Normal file
18
leenkx/blender/lnx/logicnode/curve/LN_get_curve_data.py
Normal file
@ -0,0 +1,18 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class GetCurveDataNode(LnxLogicTreeNode):
|
||||
"""Gets curve data."""
|
||||
bl_idname = 'LNGetCurveDataNode'
|
||||
bl_label = 'Get Curve Data'
|
||||
lnx_section = 'get'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketObject', 'Curve')
|
||||
|
||||
self.add_output('LnxIntSocket', 'Splines Length')
|
||||
self.add_output('LnxIntSocket', 'Equidistant Samples')
|
||||
self.add_output('LnxBoolSocket', 'Draw')
|
||||
self.add_output('LnxFloatSocket', 'Strength')
|
||||
self.add_output('LnxColorSocket', 'Color')
|
||||
self.add_output('LnxNodeSocketObject', 'Curve Mesh')
|
||||
Reference in New Issue
Block a user