253fc093b8
Properly expose classes that we actually want accessible.
(cherry picked from commit 0ef8bcac4d
)
15 lines
239 B
Python
15 lines
239 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"
|