cleanup documentation

master
QuantumCoderQC 2022-01-09 16:06:12 +01:00
parent 5fa78e4a0e
commit f28b0ad044
2 changed files with 6 additions and 6 deletions

View File

@ -2,10 +2,10 @@ from arm.logicnode.arm_nodes import *
class FloatDeltaInterpolateNode(ArmLogicTreeNode):
"""Linearly interpolate to a new value with specified interpolation `Rate`.
@input From: Value to interpolate from
@input To: Value to interpolate to
@input Delta Time: Delta Time
@input Rate: Rate of interpolation
@input From: Value to interpolate from.
@input To: Value to interpolate to.
@input Delta Time: Delta Time.
@input Rate: Rate of interpolation.
"""
bl_idname = 'LNFloatDeltaInterpolateNode'
bl_label = 'Float Delta Interpolate'

View File

@ -1,9 +1,9 @@
from arm.logicnode.arm_nodes import *
class RetainValueNode(ArmLogicTreeNode):
"""Sets the value of the given variable.
"""Retains the input value
@input Retain: Retains the value when exeuted
@input Retain: Retains the value when exeuted.
@input Value: The value that should be retained.
"""
bl_idname = 'LNRetainValueNode'