From f37f45e8a93cc0fab2a9486eec5f9ba9fddb3147 Mon Sep 17 00:00:00 2001 From: catsplosion <174218398+catsplosion@users.noreply.github.com> Date: Tue, 7 Jul 2026 23:19:40 -0700 Subject: [PATCH] fix: multiply blend mode for cutout materials --- tools/gltf_importer/src/fast64Types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/gltf_importer/src/fast64Types.h b/tools/gltf_importer/src/fast64Types.h index 42315497..5448f420 100644 --- a/tools/gltf_importer/src/fast64Types.h +++ b/tools/gltf_importer/src/fast64Types.h @@ -13,7 +13,7 @@ namespace { RDP::BLEND::NONE, // Opaque RDP::BLEND::NONE, // Opaque Decal RDP::BLEND::NONE, // Opaque Intersecting - RDP::BLEND::NONE, // Cutout + RDP::BLEND::MULTIPLY, // Cutout RDP::BLEND::MULTIPLY, // Transparent RDP::BLEND::MULTIPLY, // Transparent Decal RDP::BLEND::MULTIPLY, // Transparent Intersecting @@ -36,7 +36,7 @@ namespace { RDP::BLEND::NONE, // Opaque RDP::BLEND::NONE, // Opaque Decal RDP::BLEND::NONE, // Opaque Intersecting - RDP::BLEND::NONE, // Cutout + RDP::BLEND::MULTIPLY, // Cutout RDP::BLEND::MULTIPLY, // Transparent RDP::BLEND::MULTIPLY, // Transparent Decal RDP::BLEND::MULTIPLY, // Transparent Intersecting