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
Description: SettingsPanel added directly to the Scene fails an assertion at:
SettingsPanel
func _on_panel_visibility_changed(): assert(settings_collection) ...
Expected behavior: Instead of the assertion, a normal if check should be made:
if
func _on_panel_visibility_changed(): if !settings_collection: return ...
Screenshots: A structure of the failing Scene:
The assertion failing:
Additional info:
The text was updated successfully, but these errors were encountered:
163b292
Successfully merging a pull request may close this issue.
Description:
SettingsPanel
added directly to the Scene fails an assertion at:Expected behavior:
Instead of the assertion, a normal
if
check should be made:Screenshots:
A structure of the failing Scene:
The assertion failing:
Additional info:
The text was updated successfully, but these errors were encountered: