.. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. .. XML source: https://github.com/godotengine/godot/tree/master/docs/gdscript/doc/classes/ResourceLoader.xml. .. _class_ResourceLoader: ResourceLoader ============== **Inherits:** :ref:`Object` .. container:: contribute There is currently no description for this class. Please help us by :ref:`contributing one `! .. rst-class:: classref-reftable-group Methods ------- .. table:: :widths: auto +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`add_resource_format_loader` **(** :ref:`ResourceFormatLoader` format_loader, :ref:`bool` at_front=false **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`exists` **(** :ref:`String` path, :ref:`String` type_hint="" **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`PackedStringArray` | :ref:`get_dependencies` **(** :ref:`String` path **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`PackedStringArray` | :ref:`get_recognized_extensions_for_type` **(** :ref:`String` type **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_resource_uid` **(** :ref:`String` path **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`has_cached` **(** :ref:`String` path **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Resource` | :ref:`load` **(** :ref:`String` path, :ref:`String` type_hint="", :ref:`CacheMode` cache_mode=1 **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Resource` | :ref:`load_threaded_get` **(** :ref:`String` path **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`ThreadLoadStatus` | :ref:`load_threaded_get_status` **(** :ref:`String` path, :ref:`Array` progress=[] **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Error` | :ref:`load_threaded_request` **(** :ref:`String` path, :ref:`String` type_hint="", :ref:`bool` use_sub_threads=false, :ref:`CacheMode` cache_mode=1 **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`remove_resource_format_loader` **(** :ref:`ResourceFormatLoader` format_loader **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_abort_on_missing_resources` **(** :ref:`bool` abort **)** | +---------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Enumerations ------------ .. _enum_ResourceLoader_ThreadLoadStatus: .. rst-class:: classref-enumeration enum **ThreadLoadStatus**: .. _class_ResourceLoader_constant_THREAD_LOAD_INVALID_RESOURCE: .. rst-class:: classref-enumeration-constant :ref:`ThreadLoadStatus` **THREAD_LOAD_INVALID_RESOURCE** = ``0`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_ResourceLoader_constant_THREAD_LOAD_IN_PROGRESS: .. rst-class:: classref-enumeration-constant :ref:`ThreadLoadStatus` **THREAD_LOAD_IN_PROGRESS** = ``1`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_ResourceLoader_constant_THREAD_LOAD_FAILED: .. rst-class:: classref-enumeration-constant :ref:`ThreadLoadStatus` **THREAD_LOAD_FAILED** = ``2`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_ResourceLoader_constant_THREAD_LOAD_LOADED: .. rst-class:: classref-enumeration-constant :ref:`ThreadLoadStatus` **THREAD_LOAD_LOADED** = ``3`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _enum_ResourceLoader_CacheMode: .. rst-class:: classref-enumeration enum **CacheMode**: .. _class_ResourceLoader_constant_CACHE_MODE_IGNORE: .. rst-class:: classref-enumeration-constant :ref:`CacheMode` **CACHE_MODE_IGNORE** = ``0`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_ResourceLoader_constant_CACHE_MODE_REUSE: .. rst-class:: classref-enumeration-constant :ref:`CacheMode` **CACHE_MODE_REUSE** = ``1`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_ResourceLoader_constant_CACHE_MODE_REPLACE: .. rst-class:: classref-enumeration-constant :ref:`CacheMode` **CACHE_MODE_REPLACE** = ``2`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_ResourceLoader_constant_CACHE_MODE_IGNORE_DEEP: .. rst-class:: classref-enumeration-constant :ref:`CacheMode` **CACHE_MODE_IGNORE_DEEP** = ``3`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_ResourceLoader_constant_CACHE_MODE_REPLACE_DEEP: .. rst-class:: classref-enumeration-constant :ref:`CacheMode` **CACHE_MODE_REPLACE_DEEP** = ``4`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Method Descriptions ------------------- .. _class_ResourceLoader_method_add_resource_format_loader: .. rst-class:: classref-method void **add_resource_format_loader** **(** :ref:`ResourceFormatLoader` format_loader, :ref:`bool` at_front=false **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_exists: .. rst-class:: classref-method :ref:`bool` **exists** **(** :ref:`String` path, :ref:`String` type_hint="" **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_get_dependencies: .. rst-class:: classref-method :ref:`PackedStringArray` **get_dependencies** **(** :ref:`String` path **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_get_recognized_extensions_for_type: .. rst-class:: classref-method :ref:`PackedStringArray` **get_recognized_extensions_for_type** **(** :ref:`String` type **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_get_resource_uid: .. rst-class:: classref-method :ref:`int` **get_resource_uid** **(** :ref:`String` path **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_has_cached: .. rst-class:: classref-method :ref:`bool` **has_cached** **(** :ref:`String` path **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_load: .. rst-class:: classref-method :ref:`Resource` **load** **(** :ref:`String` path, :ref:`String` type_hint="", :ref:`CacheMode` cache_mode=1 **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_load_threaded_get: .. rst-class:: classref-method :ref:`Resource` **load_threaded_get** **(** :ref:`String` path **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_load_threaded_get_status: .. rst-class:: classref-method :ref:`ThreadLoadStatus` **load_threaded_get_status** **(** :ref:`String` path, :ref:`Array` progress=[] **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_load_threaded_request: .. rst-class:: classref-method :ref:`Error` **load_threaded_request** **(** :ref:`String` path, :ref:`String` type_hint="", :ref:`bool` use_sub_threads=false, :ref:`CacheMode` cache_mode=1 **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_remove_resource_format_loader: .. rst-class:: classref-method void **remove_resource_format_loader** **(** :ref:`ResourceFormatLoader` format_loader **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_ResourceLoader_method_set_abort_on_missing_resources: .. rst-class:: classref-method void **set_abort_on_missing_resources** **(** :ref:`bool` abort **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)` .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)` .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)` .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)` .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`