-
-
Notifications
You must be signed in to change notification settings - Fork 23.5k
Add custom paths support (custom res:///user://-like paths)
#87586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
|
This is big step (even if not directly) towards global addons 🥳 |
That's the goal! |
e203b1d to
cd0682f
Compare
|
Why do |
No, |
23fb612 to
9163707
Compare
cd9eb41 to
aa56d1c
Compare
res:///user://-like paths)
f908b8d to
c136ceb
Compare
9f8d1e2 to
10d5197
Compare
10d5197 to
6545edc
Compare
|
the pr is good. |
|
@adamscott Do you think it's possible to add memory based file system to this PR? A simple VFS so files can be used directly from memory like "memory://my_scene.tscn" |
This clearly isn't in the scope of my PR. |
|
@adamscott are you sure? it is in the scope of your PR's example usage, so i would say the answer is "already possible, no need to add anything".
|
This? #98287 |
|
Is there anything we can help with to bring the moment of merge of this PR closer? Also if I'm correct this PR and #98544 are related. |
They are not related; they simply implement the same proposal (godotengine/godot-proposals#6307). This PR is based on the existing FileAccess & DirAccess, while #98544 opts to refactor the I/O system, replacing the current FileAccess & DirAccess. |
|
I think it would be renamed to custom schemes. |
tl;dr
Enables custom resource paths that users can setup and use themselves.
Todo
Fixes