mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
[EditorExportPlatform] Move initialization to a dedicated method.
This commit is contained in:
parent
7c472e655f
commit
f20e5152ad
21 changed files with 56 additions and 31 deletions
|
|
@ -1090,7 +1090,7 @@ Error EditorExportPlatformWindows::run(const Ref<EditorExportPreset> &p_preset,
|
|||
#undef CLEANUP_AND_RETURN
|
||||
}
|
||||
|
||||
EditorExportPlatformWindows::EditorExportPlatformWindows() {
|
||||
void EditorExportPlatformWindows::initialize() {
|
||||
if (EditorNode::get_singleton()) {
|
||||
Ref<Image> img = memnew(Image);
|
||||
const bool upsample = !Math::is_equal_approx(Math::round(EDSCALE), EDSCALE);
|
||||
|
|
|
|||
|
|
@ -97,5 +97,5 @@ public:
|
|||
virtual Error run(const Ref<EditorExportPreset> &p_preset, int p_device, BitField<EditorExportPlatform::DebugFlags> p_debug_flags) override;
|
||||
virtual void cleanup() override;
|
||||
|
||||
EditorExportPlatformWindows();
|
||||
virtual void initialize() override;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue