Click or drag to resize

ResourceLoader Class

Singleton used to load resource files from the filesystem.

It uses the many ResourceFormatLoader classes registered in the engine (either built-in or from a plugin) to load files into memory and convert them to a format that can be used by the engine.

Inheritance Hierarchy
SystemObject
  GodotResourceLoader

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public static class ResourceLoader

The ResourceLoader type exposes the following members.

Properties
  NameDescription
Public propertyStatic memberSingleton
Top
Methods
  NameDescription
Public methodStatic memberExists

Returns whether a recognized resource exists for the given path.

An optional type_hint can be used to further specify the Resource type that should be handled by the ResourceFormatLoader.

Public methodStatic memberGetDependencies

Returns the dependencies for the resource at the given path.

Public methodStatic memberGetRecognizedExtensionsForType

Returns the list of recognized extensions for a resource type.

Public methodStatic memberHas

Deprecated method. Use HasCached(String) or Exists(String, String) instead.

Public methodStatic memberHasCached

Returns whether a cached resource is available for the given path.

Once a resource has been loaded by the engine, it is cached in memory for faster access, and future calls to the Load(String, String, Boolean) or LoadInteractive(String, String) methods will use the cached version. The cached resource can be overridden by using TakeOverPath(String) on a new resource for that same path.

Public methodStatic memberLoad(String, String, Boolean)

Loads a resource at the given path, caching the result for further access.

The registered ResourceFormatLoaders are queried sequentially to find the first one which can handle the file's extension, and then attempt loading. If loading fails, the remaining ResourceFormatLoaders are also attempted.

An optional type_hint can be used to further specify the Resource type that should be handled by the ResourceFormatLoader. Anything that inherits from Resource can be used as a type hint, for example Image.

If no_cache is true, the resource cache will be bypassed and the resource will be loaded anew. Otherwise, the cached resource will be returned if it exists.

Returns an empty resource if no ResourceFormatLoader could handle the file.

GDScript has a simplified @GDScript.load built-in method which can be used in most situations, leaving the use of ResourceLoader for more advanced scenarios.

Public methodStatic memberLoadT(String, String, Boolean)
Public methodStatic memberLoadInteractive

Starts loading a resource interactively. The returned ResourceInteractiveLoader object allows to load with high granularity, calling its Poll method successively to load chunks.

An optional type_hint can be used to further specify the Resource type that should be handled by the ResourceFormatLoader. Anything that inherits from Resource can be used as a type hint, for example Image.

Public methodStatic memberSetAbortOnMissingResources

Changes the behavior on missing sub-resources. The default behavior is to abort loading.

Top
See Also