1
0
mirror of https://github.com/godotengine/godot synced 2024-07-08 17:25:46 +00:00
godot/modules/vorbis/config.py
Hugo Locurcio 8352122e70
Document editor import options in the class reference
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>
2023-06-15 08:30:48 +02:00

20 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"