Remove unused EditorSceneFormatImporter::_get_import_flags

This has never been used since Godot was open sourced.

Import flags are used but directly through `_import_scene`.
This commit is contained in:
Rémi Verschelde
2025-01-14 10:59:40 +01:00
parent a69ccee151
commit 21fcb56547
16 changed files with 8 additions and 52 deletions

View File

@@ -301,3 +301,11 @@ Validate extension JSON: Error: Field 'classes/RenderingDevice/methods/uniform_b
Validate extension JSON: Error: Field 'classes/RenderingDevice/methods/vertex_buffer_create/arguments': size changed value in new API, from 3 to 4.
Optional argument added. Compatibility methods registered.
GH-101531
---------
Validate extension JSON: API was removed: classes/EditorSceneFormatImporter/methods/_get_import_flags
This virtual method, and the internal public `get_import_flags`, were never used by the engine, since it was open sourced.
So we're removing it despite the compat breakage as there's no way for users to rely on this affecting engine behavior.