Missing particle node

This commit is contained in:
2026-07-10 19:04:13 -07:00
parent 17c31b4a4b
commit 7b2f21c499

View File

@ -0,0 +1,14 @@
from lnx.logicnode.lnx_nodes import *
class SetParticleRenderEmitterNode(LnxLogicTreeNode):
"""Sets the Render Emitter of the given particle source."""
bl_idname = 'LNSetParticleRenderEmitterNode'
bl_label = 'Set Particle Render Emitter'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketAction', 'In')
self.add_input('LnxObjectSocket', 'Object')
self.add_input('LnxBoolSocket', 'Render Emitter', default_value=True)
self.add_output('LnxNodeSocketAction', 'Out')