You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Importing types from the bindings may shadow identically named user types. For example, this won't currently work because the Signal identifier of the user type will be shadowed by gdnative::nativescript::init::Signal:
#[derive(NativeClass)]structSignal;
The text was updated successfully, but these errors were encountered:
ghost
changed the title
Do not import gdnative types in macros
Do not import gdnative types, and use fully qualified paths in macros
Oct 21, 2020
ghost
changed the title
Do not import gdnative types, and use fully qualified paths in macros
Do not import gdnative types, and use canonical paths in macros
Oct 21, 2020
Importing types from the bindings may shadow identically named user types. For example, this won't currently work because the
Signal
identifier of the user type will be shadowed bygdnative::nativescript::init::Signal
:The text was updated successfully, but these errors were encountered: