Update Files
This commit is contained in:
12
leenkx/blender/lnx/logicnode/trait/LN_get_trait_paused.py
Normal file
12
leenkx/blender/lnx/logicnode/trait/LN_get_trait_paused.py
Normal file
@ -0,0 +1,12 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class GetTraitPausedNode(LnxLogicTreeNode):
|
||||
"""Returns whether the given trait is paused."""
|
||||
bl_idname = 'LNGetTraitPausedNode'
|
||||
bl_label = 'Get Trait Paused'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxDynamicSocket', 'Trait')
|
||||
|
||||
self.add_output('LnxBoolSocket', 'Is Paused')
|
Reference in New Issue
Block a user