Skip to content
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

Merged
merged 1 commit into from
Nov 14, 2024
Merged

Conversation

KoBeWi
Copy link
Member

@KoBeWi KoBeWi commented Nov 14, 2024

  • Added new static helper methods to ResourceUID
    • uid_to_path(uid) - converts uid:// to res://
    • path_to_uid(path) - opposite of the above
    • ensure_path(uid_or_path) - returns a path, converts UID when necessary
  • Fixed Image loading is broken in editor #99221

In a follow-up I plan to make use of the helper methods where applicable.

@KoBeWi KoBeWi added this to the 4.4 milestone Nov 14, 2024
@KoBeWi KoBeWi requested a review from a team as a code owner November 14, 2024 12:46
@reduz
Copy link
Member

reduz commented Nov 14, 2024

copy/paste from what I wrote on RC:

I think UIDs should only be for resource loading, not the file access
IMO the more we can separate the resource layer from the file layer the best
As technically vast majority of users should be fine using only the resource layer

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)) {
Copy link
Member

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.

Copy link
Member Author

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.

@KoBeWi
Copy link
Member Author

KoBeWi commented Nov 14, 2024

Removed the FileAccess change.

@Repiteo Repiteo merged commit 8726f84 into godotengine:master Nov 14, 2024
20 checks passed
@Repiteo
Copy link
Contributor

Repiteo commented Nov 14, 2024

Thanks!

@KoBeWi KoBeWi deleted the uidification branch November 14, 2024 21:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Image loading is broken in editor
4 participants