2018-05-30 17:11:33 +00:00
|
|
|
def can_build(env, platform):
|
2022-08-04 17:11:01 +00:00
|
|
|
env.module_add_dependencies("vorbis", ["ogg"])
|
|
|
|
return True
|
2016-10-12 18:37:38 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2016-10-12 18:37:38 +00:00
|
|
|
def configure(env):
|
2016-10-30 17:44:57 +00:00
|
|
|
pass
|
2021-09-10 01:54:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2022-07-28 18:34:41 +00:00
|
|
|
"AudioStreamOggVorbis",
|
|
|
|
"AudioStreamPlaybackOggVorbis",
|
2021-05-13 20:34:34 +00:00
|
|
|
"ResourceImporterOggVorbis",
|
2021-09-10 01:54:18 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|