Click or drag to resize

ProjectSettingsLoadResourcePack Method

Loads the contents of the .pck or .zip file specified by pack into the resource filesystem (res://). Returns true on success.

Note: If a file from pack shares the same path as a file already in the resource filesystem, any attempts to load that file will use the file from pack unless replace_files is set to false.

Note: The optional offset parameter can be used to specify the offset in bytes to the start of the resource pack. This is only supported for .pck files.

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public static bool LoadResourcePack(
	string pack,
	bool replaceFiles = true,
	int offset = 0
)

Parameters

pack
Type: SystemString

[Missing <param name="pack"/> documentation for "M:Godot.ProjectSettings.LoadResourcePack(System.String,System.Boolean,System.Int32)"]

replaceFiles (Optional)
Type: SystemBoolean

[Missing <param name="replaceFiles"/> documentation for "M:Godot.ProjectSettings.LoadResourcePack(System.String,System.Boolean,System.Int32)"]

offset (Optional)
Type: SystemInt32

[Missing <param name="offset"/> documentation for "M:Godot.ProjectSettings.LoadResourcePack(System.String,System.Boolean,System.Int32)"]

Return Value

Type: Boolean

[Missing <returns> documentation for "M:Godot.ProjectSettings.LoadResourcePack(System.String,System.Boolean,System.Int32)"]

See Also