From 645621900a647d75f8ebceaa1fdbd283a3fb24ee Mon Sep 17 00:00:00 2001 From: walon Date: Mon, 12 May 2025 22:07:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E5=8A=A0=E5=AF=86=20GeneratedEncrypti?= =?UTF-8?q?onVirtualMachine=E5=87=BD=E6=95=B0=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Editor/{ObfusPasses => }/NotObfuscatedMethodWhiteList.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) rename Editor/{ObfusPasses => }/NotObfuscatedMethodWhiteList.cs (85%) diff --git a/Editor/ObfusPasses/NotObfuscatedMethodWhiteList.cs b/Editor/NotObfuscatedMethodWhiteList.cs similarity index 85% rename from Editor/ObfusPasses/NotObfuscatedMethodWhiteList.cs rename to Editor/NotObfuscatedMethodWhiteList.cs index 4d774bb..612d293 100644 --- a/Editor/ObfusPasses/NotObfuscatedMethodWhiteList.cs +++ b/Editor/NotObfuscatedMethodWhiteList.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace Obfuz.ObfusPasses +namespace Obfuz { public class NotObfuscatedMethodWhiteList { @@ -39,6 +39,10 @@ namespace Obfuz.ObfusPasses { return true; } + if (type.FullName == "Obfuz.EncryptionVM.GeneratedEncryptionVirtualMachine") + { + return true; + } return false; } }