mirror of
https://github.com/godotengine/godot.git
synced 2024-12-15 10:12:40 +08:00
f511ef26f1
Was missing from the module config, causing the XML to be added to the main doc folder
21 lines
329 B
Python
21 lines
329 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"SceneReplicationConfig",
|
|
"SceneMultiplayer",
|
|
"MultiplayerSpawner",
|
|
"MultiplayerSynchronizer",
|
|
"OfflineMultiplayerPeer",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|