1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

[EditorExportPlatform] Move initialization to a dedicated method.

This commit is contained in:
Pāvels Nadtočajevs
2025-07-16 08:55:23 +03:00
parent 7c472e655f
commit f20e5152ad
21 changed files with 56 additions and 31 deletions

View File

@@ -916,7 +916,7 @@ Ref<Texture2D> EditorExportPlatformWeb::get_run_icon() const {
return run_icon;
}
EditorExportPlatformWeb::EditorExportPlatformWeb() {
void EditorExportPlatformWeb::initialize() {
if (EditorNode::get_singleton()) {
server.instantiate();

View File

@@ -148,6 +148,6 @@ public:
String get_debug_protocol() const override { return "ws://"; }
EditorExportPlatformWeb();
virtual void initialize() override;
~EditorExportPlatformWeb();
};