From 98585bdc30641383bef64233c534efa35affb224 Mon Sep 17 00:00:00 2001 From: Doris Wu Date: Tue, 19 Nov 2024 18:00:54 +0800 Subject: [PATCH] Disable transparent picking by default --- filament/src/details/View.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filament/src/details/View.h b/filament/src/details/View.h index e8ffafd0f9b..1f41bab8235 100644 --- a/filament/src/details/View.h +++ b/filament/src/details/View.h @@ -534,7 +534,7 @@ class FView : public View { Viewport mViewport; bool mCulling = true; bool mFrontFaceWindingInverted = false; - bool mIsTransparentPickingEnabled = true; + bool mIsTransparentPickingEnabled = false; FRenderTarget* mRenderTarget = nullptr;