15 lines
503 B
Python
15 lines
503 B
Python
|
from lnx.logicnode.lnx_nodes import *
|
||
|
|
||
|
class SetParticleSpeedNode(LnxLogicTreeNode):
|
||
|
"""Sets the speed of the given particle source."""
|
||
|
bl_idname = 'LNSetParticleSpeedNode'
|
||
|
bl_label = 'Set Particle Speed'
|
||
|
lnx_version = 1
|
||
|
|
||
|
def lnx_init(self, context):
|
||
|
self.add_input('LnxNodeSocketAction', 'In')
|
||
|
self.add_input('LnxNodeSocketObject', 'Object')
|
||
|
self.add_input('LnxFloatSocket', 'Speed', default_value=1.0)
|
||
|
|
||
|
self.add_output('LnxNodeSocketAction', 'Out')
|