godot/modules/webm/config.py
Rémi Verschelde d6176db271 Unexpose subclasses of ResourceFormatLoader and -Saver
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.
2019-06-18 17:56:23 +02:00

14 lines
214 B
Python

def can_build(env, platform):
return platform not in ['iphone']
def configure(env):
pass
def get_doc_classes():
return [
"VideoStreamWebm",
]
def get_doc_path():
return "doc_classes"