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