Hey :)
I want to pack external .obj files into a pck file, which I can use later. All at runtime... But when try to using the .obj file from the loaded .pck following error message comes:
Loading resource: res://Resources/Test-Track/Objects/untitled.obj
ERROR: _load: No loader found for resource: res://Resources/Test-Track/Objects/untitled.obj.
At: core/io/resource_loader.cpp:290.
My code for packing an .obj file is only:
var packer = PCKPacker.new()
packer.pck_start(pck_path)
packer.add_file("res://Resources/" + resource_path, external_path_to_obj)
packer.flush()
I think there's missing something. Does anyone have an idea?
Everything should work at runtime..