diff --git a/leenkx/blender/lnx/logicnode/animation/LN_set_particle_speed.py b/leenkx/blender/lnx/logicnode/animation/LN_set_particle_speed.py deleted file mode 100644 index 54903a9..0000000 --- a/leenkx/blender/lnx/logicnode/animation/LN_set_particle_speed.py +++ /dev/null @@ -1,14 +0,0 @@ -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')