From 8b475e9f54a56ca77f9f8b02cc56152cb2642768 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 17 Feb 2026 18:50:24 +0100 Subject: [PATCH] Restore profiler for Web for engine stats in non-Release builds --- Source/Engine/Profiler/Profiler.Build.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Engine/Profiler/Profiler.Build.cs b/Source/Engine/Profiler/Profiler.Build.cs index b1bdd85b8..013336181 100644 --- a/Source/Engine/Profiler/Profiler.Build.cs +++ b/Source/Engine/Profiler/Profiler.Build.cs @@ -15,8 +15,6 @@ public class Profiler : EngineModule /// True if use profiler, otherwise false. public static bool Use(BuildOptions options) { - if (options.Platform.Target == TargetPlatform.Web) - return false; return options.Configuration != TargetConfiguration.Release || options.Target.IsEditor; }