-
-
Notifications
You must be signed in to change notification settings - Fork 22k
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
Resource UID fixes and improvements #99226
Conversation
copy/paste from what I wrote on RC: I think UIDs should only be for resource loading, not the file access plus doc should be changed in FileAccess and DirAccess that the resource layer should be used instead unless specifically needed |
#ifdef DEBUG_ENABLED | ||
if (p_path.begins_with("res://") && ResourceLoader::exists(p_path)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function is kind of tricky, but I think if you supply an UID it should just not work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See the linked issue.
The expectation is different apparently.
Removed the FileAccess change. |
Thanks! |
uid_to_path(uid)
- convertsuid://
tores://
path_to_uid(path)
- opposite of the aboveensure_path(uid_or_path)
- returns a path, converts UID when necessaryIn a follow-up I plan to make use of the helper methods where applicable.