We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Follow up issue of #658
If a library uses fqdn registration and defines a custom resource like:
package godot.tests.library.fqname @RegisterClass class CustomResource: Resource()
it's FQDN registration is: godot_tests_library_fqname_CustomResource.
godot_tests_library_fqname_CustomResource
But when used in a project which does not use FQDN registration and exported as a property:
@Export @RegisterProperty var wrongTypeHint = CustomResource()
it's type hint becomes CustomResource rather than godot_tests_library_fqname_CustomResource
CustomResource
This is true both ways.
The text was updated successfully, but these errors were encountered:
chippmann
Successfully merging a pull request may close this issue.
Follow up issue of #658
If a library uses fqdn registration and defines a custom resource like:
it's FQDN registration is:
godot_tests_library_fqname_CustomResource
.But when used in a project which does not use FQDN registration and exported as a property:
it's type hint becomes
CustomResource
rather thangodot_tests_library_fqname_CustomResource
This is true both ways.
The text was updated successfully, but these errors were encountered: