MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / notify_main_screen_changed

Method notify_main_screen_changed

editor/plugins/editor_plugin.cpp:248–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246}
247
248void EditorPlugin::notify_main_screen_changed(const String &screen_name) {
249 if (screen_name == last_main_screen_name) {
250 return;
251 }
252
253 emit_signal(SNAME("main_screen_changed"), screen_name);
254 last_main_screen_name = screen_name;
255}
256
257void EditorPlugin::notify_scene_closed(const String &scene_filepath) {
258 emit_signal(SNAME("scene_closed"), scene_filepath);

Callers 1

selectMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected