Hi,
i still got some problems loading .pck files :(
Here is what i am doing:
i created 2 projects:
main app
mod
and i have a created a third folder for export...
in my main scene i have a VBoxcontainer that will get the mod scene as a child (wich is a simple panel with a label), here is the code for the VBoxContainer script:
func _ready() -> void:
ProjectSettings.load_resource_pack("res://mod.pck")
var imported_scene = load("res://mod_scene.tscn").get_instance_id()
add_child(imported_scene)
Then i had exported the main project as app.exe and app.pck, and the mod project as mod.pck, within the same folder... i dont know what i am missing but it doesnt work.
Export folder:
app.exe
app.pck
* mod.pck (which include only mod_scene.tscn)