加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
objectStateConstants.py 647 Bytes
一键复制 编辑 原始数据 按行查看 历史
bgArray 提交于 2022-10-11 19:14 . lib
class ObjectStateConstant:
def __init__(self):
self.isDebugging = True
self.versionStr = "v0.0.1"
self.versionL = (0, 0, 1)
self.ParameterSelection = "default=self"
self.isLoggingUsing = True
self.isPicShowing = False
self.isPicDrawing = True
def debug(self):
return self.isDebugging
def programVersion(self):
return [self.versionStr, self.versionL]
def debuggingPrint(self, anything):
if self.isDebugging:
print(anything)
def dp(self, anything):
if self.isDebugging:
print(anything)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化