more-cleanups

This commit is contained in:
Henrique 2020-10-26 11:32:59 -03:00
parent 413951cb62
commit 4324d6196b
4 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ from arm.logicnode.arm_nodes import *
class AlternateNode(ArmLogicTreeNode):
"""Activates the outputs 0 and 1 alternating every time it is active."""
"""Activates the outputs "0" and "1" alternating every time it is active."""
bl_idname = 'LNAlternateNode'
bl_label = 'Alternate'
arm_version = 1

View file

@ -2,7 +2,7 @@ from arm.logicnode.arm_nodes import *
class BranchNode(ArmLogicTreeNode):
"""Activates its "True" or "False" output, according
"""Activates its `true` or `false` output, according
to the state of the plugged-in boolean."""
bl_idname = 'LNBranchNode'
bl_label = 'Branch'

View file

@ -1,7 +1,7 @@
from arm.logicnode.arm_nodes import *
class SwitchNode(ArmLogicTreeNode):
"""Activates the outputs depending of the value. If 'value' is equal to 'case 1', the output 'case 1' will be activated.
"""Activates the outputs depending of the value. If the "value" is equal to "case 1", the output "case 1" will be activated.
@output Default: Activated if the input value does not match any case.
"""

View file

@ -1,7 +1,7 @@
from arm.logicnode.arm_nodes import *
class WhileNode(ArmLogicTreeNode):
"""Loops while the condition is `True`.
"""Loops while the condition is `true`.
@seeNode Loop
@seeNode Loop Break