SpielBackupAlt/addons/pythonscript/windows-32/lib/site-packages/godot/globals.py

13 lines
234 B
Python
Raw Permalink Normal View History

2024-12-26 14:54:06 +00:00
from _godot import __global_constants
def __getattr__(name):
try:
return __global_constants[name]
except KeyError:
raise AttributeError
def __dir__():
return list(__global_constants.keys())