mirror of
https://github.com/godotengine/godot
synced 2024-11-02 11:59:10 +00:00
17 lines
284 B
Python
17 lines
284 B
Python
def can_build(env, platform):
|
|
return env.module_check_dependencies("vorbis", ["ogg"])
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"AudioStreamOGGVorbis",
|
|
"AudioStreamPlaybackOGGVorbis",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|