mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 22:21:18 +00:00
Address remaining feedback on https://github.com/godotengine/godot/pull/106709
Address https://github.com/godotengine/godot/pull/106709#discussion_r2114489487
This commit is contained in:
parent
53be3b78d1
commit
3ade4b4b63
6 changed files with 14 additions and 9 deletions
|
|
@ -487,7 +487,9 @@ class Godot private constructor(val context: Context) {
|
|||
|
||||
// Check whether the render view should be made transparent
|
||||
val shouldBeTransparent =
|
||||
!isProjectManagerHint() && !isEditorHint() && java.lang.Boolean.parseBoolean(GodotLib.getGlobal("display/window/per_pixel_transparency/allowed"))
|
||||
!isProjectManagerHint() &&
|
||||
!isEditorHint() &&
|
||||
java.lang.Boolean.parseBoolean(GodotLib.getGlobal("display/window/per_pixel_transparency/allowed"))
|
||||
Log.d(TAG, "Render view should be transparent: $shouldBeTransparent")
|
||||
renderView = if (usesVulkan()) {
|
||||
if (meetsVulkanRequirements(context.packageManager)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue