From 4e23dcf91fc66f590cb272d7505acc8ca24db875 Mon Sep 17 00:00:00 2001 From: KillzXGaming Date: Tue, 15 Sep 2020 14:36:05 -0400 Subject: [PATCH] BFRES : Quick fix to support Rune Factory 4 samplers. --- File_Format_Library/FileFormats/BFRES/BfresSwitch.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/File_Format_Library/FileFormats/BFRES/BfresSwitch.cs b/File_Format_Library/FileFormats/BFRES/BfresSwitch.cs index 45a1038a..039e93b5 100644 --- a/File_Format_Library/FileFormats/BFRES/BfresSwitch.cs +++ b/File_Format_Library/FileFormats/BFRES/BfresSwitch.cs @@ -827,7 +827,8 @@ namespace FirstPlugin } } - else if (mat.ShaderAssign.ShaderArchiveName == "ssg") + else if (mat.ShaderAssign.ShaderArchiveName == "ssg" || + mat.ShaderAssign.ShaderArchiveName == "rf4cmv") { bool IsAlbedo0 = texture.SamplerName == "_a0"; bool IsNormal = texture.SamplerName == "_n0";