mirror of
https://github.com/godotengine/godot
synced 2024-11-02 11:20:21 +00:00
8352122e70
Tooltips are displayed when hovering import options, both in the Import dock and in the import defaults editor (which is in the Project Settings). Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
19 lines
328 B
Python
19 lines
328 B
Python
def can_build(env, platform):
|
|
env.module_add_dependencies("vorbis", ["ogg"])
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"AudioStreamOggVorbis",
|
|
"AudioStreamPlaybackOggVorbis",
|
|
"ResourceImporterOggVorbis",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|