You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
doc: Make all module docs self-contained
This commit is contained in:
@@ -4,3 +4,11 @@ def can_build(platform):
|
|||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def get_doc_classes():
|
||||||
|
return [
|
||||||
|
"BulletPhysicsDirectBodyState",
|
||||||
|
"BulletPhysicsServer",
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_doc_path():
|
||||||
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,7 +1,13 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def get_doc_classes():
|
||||||
|
return [
|
||||||
|
"NetworkedMultiplayerENet",
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_doc_path():
|
||||||
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
# Tools only, disabled for non-tools
|
# Tools only, disabled for non-tools
|
||||||
# TODO: Find a cleaner way to achieve that
|
# TODO: Find a cleaner way to achieve that
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
@@ -6,7 +5,13 @@ def configure(env):
|
|||||||
env.use_ptrcall = True
|
env.use_ptrcall = True
|
||||||
|
|
||||||
def get_doc_classes():
|
def get_doc_classes():
|
||||||
return ["GDNative", "GDNativeLibrary", "NativeScript", "ARVRInterfaceGDNative"]
|
return [
|
||||||
|
"ARVRInterfaceGDNative",
|
||||||
|
"GDNative",
|
||||||
|
"GDNativeLibrary",
|
||||||
|
"NativeScript",
|
||||||
|
"PluginScript",
|
||||||
|
]
|
||||||
|
|
||||||
def get_doc_path():
|
def get_doc_path():
|
||||||
return "doc_classes"
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,8 +1,15 @@
|
|||||||
|
|
||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def get_doc_classes():
|
||||||
|
return [
|
||||||
|
"GDFunctionState",
|
||||||
|
"GDNativeClass",
|
||||||
|
"GDScript",
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_doc_path():
|
||||||
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,14 +1,13 @@
|
|||||||
|
|
||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def get_doc_classes():
|
def get_doc_classes():
|
||||||
return ["GridMap"]
|
return [
|
||||||
|
"GridMap",
|
||||||
|
]
|
||||||
|
|
||||||
def get_doc_path():
|
def get_doc_path():
|
||||||
return "doc_classes"
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -6,7 +6,9 @@ def configure(env):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
def get_doc_classes():
|
def get_doc_classes():
|
||||||
return ["MobileVRInterface"]
|
return [
|
||||||
|
"MobileVRInterface",
|
||||||
|
]
|
||||||
|
|
||||||
def get_doc_path():
|
def get_doc_path():
|
||||||
return "doc_classes"
|
return "doc_classes"
|
||||||
|
|||||||
@@ -177,7 +177,11 @@ def configure(env):
|
|||||||
|
|
||||||
|
|
||||||
def get_doc_classes():
|
def get_doc_classes():
|
||||||
return ["@C#", "CSharpScript", "GodotSharp"]
|
return [
|
||||||
|
"@C#",
|
||||||
|
"CSharpScript",
|
||||||
|
"GodotSharp",
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
def get_doc_path():
|
def get_doc_path():
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,7 +1,13 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def get_doc_classes():
|
||||||
|
return [
|
||||||
|
"AudioStreamOpus",
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_doc_path():
|
||||||
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return platform != "android"
|
return platform != "android"
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,9 +1,14 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def get_doc_classes():
|
||||||
|
return [
|
||||||
|
"RegEx",
|
||||||
|
"RegExMatch",
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_doc_path():
|
||||||
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
# Tools only, disabled for non-tools
|
# Tools only, disabled for non-tools
|
||||||
# TODO: Find a cleaner way to achieve that
|
# TODO: Find a cleaner way to achieve that
|
||||||
|
|||||||
@@ -1,7 +1,14 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def get_doc_classes():
|
||||||
|
return [
|
||||||
|
"AudioStreamOGGVorbis",
|
||||||
|
"ResourceImporterOGGVorbis",
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_doc_path():
|
||||||
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,7 +1,14 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def get_doc_classes():
|
||||||
|
return [
|
||||||
|
"ResourceImporterTheora",
|
||||||
|
"VideoStreamTheora",
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_doc_path():
|
||||||
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
# Tools only, disabled for non-tools
|
# Tools only, disabled for non-tools
|
||||||
# TODO: Find a cleaner way to achieve that
|
# TODO: Find a cleaner way to achieve that
|
||||||
|
|||||||
@@ -1,14 +1,57 @@
|
|||||||
|
|
||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def get_doc_classes():
|
def get_doc_classes():
|
||||||
return ["VisualScriptEditor"]
|
return [
|
||||||
|
"VisualScriptBasicTypeConstant",
|
||||||
|
"VisualScriptBuiltinFunc",
|
||||||
|
"VisualScriptClassConstant",
|
||||||
|
"VisualScriptComment",
|
||||||
|
"VisualScriptCondition",
|
||||||
|
"VisualScriptConstant",
|
||||||
|
"VisualScriptConstructor",
|
||||||
|
"VisualScriptCustomNode",
|
||||||
|
"VisualScriptDeconstruct",
|
||||||
|
"VisualScriptEditor",
|
||||||
|
"VisualScriptEmitSignal",
|
||||||
|
"VisualScriptEngineSingleton",
|
||||||
|
"VisualScriptExpression",
|
||||||
|
"VisualScriptFunctionCall",
|
||||||
|
"VisualScriptFunctionState",
|
||||||
|
"VisualScriptFunction",
|
||||||
|
"VisualScriptGlobalConstant",
|
||||||
|
"VisualScriptIndexGet",
|
||||||
|
"VisualScriptIndexSet",
|
||||||
|
"VisualScriptInputAction",
|
||||||
|
"VisualScriptIterator",
|
||||||
|
"VisualScriptLocalVarSet",
|
||||||
|
"VisualScriptLocalVar",
|
||||||
|
"VisualScriptMathConstant",
|
||||||
|
"VisualScriptNode",
|
||||||
|
"VisualScriptOperator",
|
||||||
|
"VisualScriptPreload",
|
||||||
|
"VisualScriptPropertyGet",
|
||||||
|
"VisualScriptPropertySet",
|
||||||
|
"VisualScriptResourcePath",
|
||||||
|
"VisualScriptReturn",
|
||||||
|
"VisualScriptSceneNode",
|
||||||
|
"VisualScriptSceneTree",
|
||||||
|
"VisualScriptSelect",
|
||||||
|
"VisualScriptSelf",
|
||||||
|
"VisualScriptSequence",
|
||||||
|
"VisualScriptSubCall",
|
||||||
|
"VisualScriptSwitch",
|
||||||
|
"VisualScriptTypeCast",
|
||||||
|
"VisualScriptVariableGet",
|
||||||
|
"VisualScriptVariableSet",
|
||||||
|
"VisualScriptWhile",
|
||||||
|
"VisualScript",
|
||||||
|
"VisualScriptYieldSignal",
|
||||||
|
"VisualScriptYield",
|
||||||
|
]
|
||||||
|
|
||||||
def get_doc_path():
|
def get_doc_path():
|
||||||
return "doc_classes"
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -1,7 +1,14 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def get_doc_classes():
|
||||||
|
return [
|
||||||
|
"ResourceImporterWebm",
|
||||||
|
"VideoStreamWebm",
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_doc_path():
|
||||||
|
return "doc_classes"
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
def can_build(platform):
|
def can_build(platform):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
pass
|
pass
|
||||||
|
|||||||
Reference in New Issue
Block a user