From 69a4cd686f47b0bd769ab9aaa5dc2c71a4e5151d Mon Sep 17 00:00:00 2001 From: walon Date: Thu, 22 May 2025 10:09:02 +0800 Subject: [PATCH] fix: fix a serious bug that didn't setup _obfuscatedAssemblyTempOutputPath which make all obfuscation passes exclude symbol obfuscation were skipped! --- com.code-philosophy.obfuz/Editor/Obfuscator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.code-philosophy.obfuz/Editor/Obfuscator.cs b/com.code-philosophy.obfuz/Editor/Obfuscator.cs index 9a5841b..a7b8242 100644 --- a/com.code-philosophy.obfuz/Editor/Obfuscator.cs +++ b/com.code-philosophy.obfuz/Editor/Obfuscator.cs @@ -85,7 +85,7 @@ namespace Obfuz FileUtil.RecreateDir(_obfuscatedAssemblyOutputPath); FileUtil.RecreateDir(_obfuscatedAssemblyTempOutputPath); RunPipeline(_pipeline1); - _assemblyResolver.InsertFirst(new PathAssemblyResolver(_obfuscatedAssemblyOutputPath)); + _assemblyResolver.InsertFirst(new PathAssemblyResolver(_obfuscatedAssemblyTempOutputPath)); RunPipeline(_pipeline2); FileUtil.CopyDir(_obfuscatedAssemblyTempOutputPath, _obfuscatedAssemblyOutputPath, true); Debug.Log($"Obfuscator Run. end");