-
-
Notifications
You must be signed in to change notification settings - Fork 97
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
Android ability to display game along the notch. #1622
Comments
I think the post linked has an updated answer that solves this issue. Using custom build system you can override the default android theme and add |
Confirm, the guide in the post work for me. Tried on a few phones |
Is this implemented in 3.3 now when immersive mode is enabled? Judging by this Q&A question, the game now seems to display behind the notch by default. |
@Calinou I'v just tried Godot 3.3. Yes, it is implemented, i no longer need custom android build. |
What if I don't want to display behind the notch? Both Android and iOS. |
@GForceProductions You can use Alternatively, add some margin on all sides to prevent UI elements from being placed behind the notch (or otherwise being too close to it). |
@Calinou Thank you for the reply and suggestion. |
There doesn't appear to be a built-in way to do this anymore (on iOS at least). See also godotengine/godot#49887. As a workaround, you could display an opaque black ColorRect node above the notch area (determined by what's outside the safe area). Either way, I think modern mobile games are really expected to use the notch area in a clever way. For example, you could use this small area to let the player see more of the game world. Considering mobile displays are small enough already, every square centimeter of display helps here. Just make sure the UI doesn't touch the notch 🙂 |
Ok thank you! |
Describe the project you are working on:
Im working on a mobile game
Describe the problem or limitation you are having in your project:
that would like to be shown in real full screen, but the sides along the notch are just black, I would like to show my game in these places too.
Describe the feature / enhancement and how it helps to overcome the problem or limitation:
Some property in the project settings under the android, for example support notch true/false or something like that would be really useful, because there are a lot of phones now that have notches.
Describe how your proposal will work, with code, pseudocode, mockups, and/or diagrams:
It would just (probably) modify the manifest file, but i dont know how actually because i tried to do this manually and none of manifest properties worked for me to show the game along the notches.
If this enhancement will not be used often, can it be worked around with a few lines of script?:
Is there a reason why this should be core and not an add-on in the asset library?:
I encountered a lot of posts on different portals about this, and there are no answears or fixes for this problem yet.
eg: link
The text was updated successfully, but these errors were encountered: