I have problem that I can't open resources in release mode.
here's simple code
if file.file_exists("res://engine.cfg"):
print("res://engine.cfg exists")
else:
print("res://engine.cfg not exists")
in debug mode, console prints "exists"
but exported app, console prints "not exists"