mirror of
https://github.com/godotengine/godot
synced 2024-11-02 08:53:46 +00:00
d6176db271
ResourceFormatLoader and ResourceFormatSaver are meant to be overridden to add support for different formats in ResourceLoader and ResourceSaver. Those should be exposed as they can be overridden in plugins. On the other hand, all predefined subclasses of those two base classes are only meant to register support for new file and resource types, but should not and cannot be used directly from script, so they should not be exposed. Also unexposed ResourceImporterOGGVorbis (and thus its base class ResourceImporter) which are editor-only.
13 lines
194 B
Python
13 lines
194 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"VideoStreamTheora",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|