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>
17 lines
225 B
Python
17 lines
225 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"AudioStreamMP3",
|
|
"ResourceImporterMP3",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|