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
version: 242.20224.418
public partial class Test : Node { [Export] public Node ExportNode; }
For the above code, you will get a warning about null check:
Non-nullable field 'ExportNode' is uninitialized. Consider declaring the field as nullable.
In theory, the fields exported by Godot should not be checked for initialization (initialization is in the corresponding tscn file).
The text was updated successfully, but these errors were encountered:
By the way, this field will be prompted to be set as a private field. This suggestion should not be applied to exported fields.
Sorry, something went wrong.
No branches or pull requests
version: 242.20224.418
For the above code, you will get a warning about null check:
In theory, the fields exported by Godot should not be checked for initialization (initialization is in the corresponding tscn file).
The text was updated successfully, but these errors were encountered: