-
-
Notifications
You must be signed in to change notification settings - Fork 21.3k
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
Allow TileMap physics/navigation to still work when hidden #83560
Allow TileMap physics/navigation to still work when hidden #83560
Conversation
Should we apply this to navigation too? |
I don't know. I didn't check if navigation nodes were disabled when hidden. |
It has the same condition, so likely should be changed too: Line 905 in f8818f8
|
Yeah, I know it has the same condition. My question is whether or not other navigation nodes (mainly NavigationRegion2D) are still working when hidden or not. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems fine, just waiting to see if this should be done for navigation too.
Can't find anything in the |
1cb1698
to
9d90f17
Compare
Done, I've just pushed an update to make navigation work too. |
Yes navigation still works when not visible. Visibility has no use in navigation apart from debug rendering. Most navigation related nodes have a dedicated As mentioned in dev chat I also wonder why it should be even any other way, visibility has clearly to do with visible things, aka rendering / occlusion. It has no bearing on logic and imo should not. |
Thanks! |
Fixes #83499