Up to date

This page is up to date for Godot 4.3. If you still find outdated information, please open an issue.

ResourcePreloaderΒΆ

Inherits: Node < Object

A node used to preload sub-resources inside a scene.

DescriptionΒΆ

This node is used to preload sub-resources inside a scene, so when the scene is loaded, all the resources are ready to use and can be retrieved from the preloader. You can add the resources using the ResourcePreloader tab when the node is selected.

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

MethodsΒΆ

void

add_resource(name: StringName, resource: Resource)

Resource

get_resource(name: StringName) const

PackedStringArray

get_resource_list() const

bool

has_resource(name: StringName) const

void

remove_resource(name: StringName)

void

rename_resource(name: StringName, newname: StringName)


Method DescriptionsΒΆ

void add_resource(name: StringName, resource: Resource) πŸ”—

Adds a resource to the preloader with the given name. If a resource with the given name already exists, the new resource will be renamed to "name N" where N is an incrementing number starting from 2.


Resource get_resource(name: StringName) const πŸ”—

Returns the resource associated to name.


PackedStringArray get_resource_list() const πŸ”—

Returns the list of resources inside the preloader.


bool has_resource(name: StringName) const πŸ”—

Returns true if the preloader contains a resource associated to name.


void remove_resource(name: StringName) πŸ”—

Removes the resource associated to name from the preloader.


void rename_resource(name: StringName, newname: StringName) πŸ”—

Renames a resource inside the preloader from name to newname.