From 90a0cc0e03c657350b059722bc6c30a48a40ea43 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 23 Mar 2026 18:19:53 +0100 Subject: [PATCH] Add warning about Web platform being not finished yet --- Source/Editor/Windows/GameCookerWindow.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Editor/Windows/GameCookerWindow.cs b/Source/Editor/Windows/GameCookerWindow.cs index fac711e7b..72e094f7e 100644 --- a/Source/Editor/Windows/GameCookerWindow.cs +++ b/Source/Editor/Windows/GameCookerWindow.cs @@ -602,6 +602,7 @@ namespace FlaxEditor.Windows break; case PlatformType.Web: name = "Web"; + layout.Label("Web platform is experimental and some features are not finished yet (eg. C# scripting)", TextAlignment.Center).Label.TextColor = Color.Yellow; break; default: name = Utilities.Utils.GetPropertyNameUI(_platform.ToString());