forked from LeenkxTeam/LNXSDK
Repe [T3DU] Update - 31f26d171bba0355ce2a77031e3aad4c64dbc7e9
This commit is contained in:
@ -0,0 +1,16 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
|
||||
class SampleObjectPointsNode(LnxLogicTreeNode):
|
||||
"""
|
||||
Samples points and surface normals across a mesh object using a low-discrepancy distribution.
|
||||
"""
|
||||
bl_idname = 'LNSampleObjectPointsNode'
|
||||
bl_label = 'Sample Object Points'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketObject', 'Object')
|
||||
self.add_input('LnxIntSocket', 'Sample')
|
||||
|
||||
self.add_output('LnxNodeSocketArray', 'Point/Normal')
|
||||
Reference in New Issue
Block a user