We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677dbf4 commit 31a0b49Copy full SHA for 31a0b49
example/BPNode/Example/Button/Simple.py
@@ -1,11 +1,10 @@
1
import Blackprint
2
-import types
3
from ...utils import colorLog
4
5
@Blackprint.registerNode('Example/Button/Simple')
6
class Simple(Blackprint.Node):
7
output = {
8
- 'Clicked': types.FunctionType
+ 'Clicked': Blackprint.Types.Trigger
9
}
10
11
# Create interface for puppet node
example/BPNode/Example/Input/Simple.py
@Blackprint.registerNode('Example/Input/Simple')
- 'Changed': types.FunctionType,
+ 'Changed': Blackprint.Types.Trigger,
'Value': str,
0 commit comments