SuperScriptMaterializer/SuperScriptDecorator/DecoratorConst.py

21 lines
330 B
Python
Raw Permalink Normal View History

2023-02-22 10:23:05 +08:00
2023-02-22 21:49:31 +08:00
class Export_Boolean(object):
TRUE = 1
FALSE = 0
class Export_Behavior_Type(object):
FUNCTION = 0
GRAPH = 1
SCRIPT = 4
2023-02-22 21:49:31 +08:00
class Export_bLink_InputOutputType(object):
2023-02-22 10:23:05 +08:00
INPUT = 0
OUTPUT = 1
2023-02-22 21:49:31 +08:00
class Export_pLink_InputOutputType(object):
2023-02-22 10:23:05 +08:00
PIN = 0
POUT = 1
PLOCAL = 2
PTARGET = 3
PATTR = 4