.. Generated automatically by doc/tools/makerst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the ResourceFormatLoader.xml source instead. .. The source is found in doc/classes or modules//doc_classes. .. _class_ResourceFormatLoader: ResourceFormatLoader ==================== **Inherits:** :ref:`Reference` **<** :ref:`Object` **Inherited By:** :ref:`GDNativeLibraryResourceLoader`, :ref:`ResourceFormatDDS`, :ref:`ResourceFormatImporter`, :ref:`ResourceFormatLoaderBMFont`, :ref:`ResourceFormatLoaderBinary`, :ref:`ResourceFormatLoaderDynamicFont`, :ref:`ResourceFormatLoaderGDScript`, :ref:`ResourceFormatLoaderImage`, :ref:`ResourceFormatLoaderNativeScript`, :ref:`ResourceFormatLoaderShader`, :ref:`ResourceFormatLoaderStreamTexture`, :ref:`ResourceFormatLoaderText`, :ref:`ResourceFormatLoaderTextureLayered`, :ref:`ResourceFormatLoaderTheora`, :ref:`ResourceFormatLoaderWebm`, :ref:`ResourceFormatPKM`, :ref:`ResourceFormatPVR`, :ref:`TranslationLoaderPO` **Category:** Core Brief Description ----------------- Loads a specific resource type from a file. Methods ------- +-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`get_dependencies` **(** :ref:`String` path, :ref:`String` add_types **)** virtual | +-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`PoolStringArray` | :ref:`get_recognized_extensions` **(** **)** virtual | +-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_resource_type` **(** :ref:`String` path **)** virtual | +-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`handles_type` **(** :ref:`String` typename **)** virtual | +-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Variant` | :ref:`load` **(** :ref:`String` path, :ref:`String` original_path **)** virtual | +-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`rename_dependencies` **(** :ref:`String` path, :ref:`String` renames **)** virtual | +-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Description ----------- Godot loads resources in the editor or in exported games using ResourceFormatLoaders. They get queried when you call ``load``, or when a resource with internal dependencies is loaded. Each file type may load as a different resource type, so multiple ResourceFormatLoader are registered in the engine. Extending this class allows you to define your own. You should give it a global class name with ``class_name`` for it to be registered. You may as well implement a :ref:`ResourceFormatSaver`. Note: You can also extend :ref:`EditorImportPlugin` if the resource type you need exists but Godot is unable to load its format. Choosing one way over another depends if the format is suitable or not for the final exported game. Example: it's better to import .PNG textures as .STEX first, so they can be loaded with better efficiency on the graphics card. Method Descriptions ------------------- .. _class_ResourceFormatLoader_method_get_dependencies: - void **get_dependencies** **(** :ref:`String` path, :ref:`String` add_types **)** virtual If implemented, gets the dependencies of a given resource. If ``add_types`` is ``true``, paths should be appended ``::TypeName``, where ``TypeName`` is the class name of the dependency. Note that custom resource types defined by scripts aren't known by the :ref:`ClassDB`, so you might just return ``Resource`` for them. .. _class_ResourceFormatLoader_method_get_recognized_extensions: - :ref:`PoolStringArray` **get_recognized_extensions** **(** **)** virtual Gets the list of extensions for files this loader is able to read. .. _class_ResourceFormatLoader_method_get_resource_type: - :ref:`String` **get_resource_type** **(** :ref:`String` path **)** virtual Gets the class name of the resource associated with the given path. If the loader cannot handle it, it should return ``""``. Note that custom resource types defined by scripts aren't known by the :ref:`ClassDB`, so you might just return ``"Resource"`` for them. .. _class_ResourceFormatLoader_method_handles_type: - :ref:`bool` **handles_type** **(** :ref:`String` typename **)** virtual Tells which resource class this loader can load. Note that custom resource types defined by scripts aren't known by the :ref:`ClassDB`, so you might just handle ``"Resource"`` for them. .. _class_ResourceFormatLoader_method_load: - :ref:`Variant` **load** **(** :ref:`String` path, :ref:`String` original_path **)** virtual Loads a resource when the engine finds this loader to be compatible. If the loaded resource is the result of an import, ``original_path`` will target the source file. Returns a resource object if succeeded, or an ``ERR_*`` constant listed in :ref:`@GlobalScope` if it failed. .. _class_ResourceFormatLoader_method_rename_dependencies: - :ref:`int` **rename_dependencies** **(** :ref:`String` path, :ref:`String` renames **)** virtual If implemented, renames dependencies within the given resource and saves it. ``renames`` is a dictionary ``{ String => String }`` mapping old dependency paths to new paths. Returns ``OK`` on success, or an ``ERR_*`` constant listed in :ref:`@GlobalScope` in case of failure.