mirror of
https://github.com/godotengine/godot.git
synced 2024-12-21 10:25:24 +08:00
0ef8bcac4d
Properly expose classes that we actually want accessible.
19 lines
242 B
Python
19 lines
242 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"@GDScript",
|
|
"GDScript",
|
|
"GDScriptFunctionState",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|