We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61546ab commit a871ceaCopy full SHA for a871cea
1 file changed
src/autoload/State.gd
@@ -63,17 +63,6 @@ func _enter_tree() -> void:
63
64
Configs.active_tab_changed.connect(setup_from_tab)
65
setup_from_tab.call_deferred() # Let everything load before emitting signals.
66
-
67
- var cmdline_args := OS.get_cmdline_args()
68
69
- # The first argument passed is always a path to the scene file when in-editor.
70
- if (OS.is_debug_build() and not OS.has_feature("template")) and cmdline_args.size() >= 1:
71
- cmdline_args.remove_at(0)
72
73
- if cmdline_args.size() >= 1:
74
- # Need to wait a frame so the import warnings panel becomes available.
75
- await get_tree().process_frame
76
- FileUtils.apply_svgs_from_paths(cmdline_args)
77
78
func setup_from_tab() -> void:
79
var active_tab := Configs.savedata.get_active_tab()
0 commit comments