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

Merge pull request #104376 from ProgrammerOnCoffee/update-workspace-list

Add `Game` workspace to documentation and autocomplete
This commit is contained in:
Thaddeus Crews
2025-03-19 17:46:02 -05:00
4 changed files with 7 additions and 7 deletions

View File

@@ -751,7 +751,7 @@ void EditorInterface::get_argument_options(const StringName &p_function, int p_i
const String pf = p_function;
if (p_idx == 0) {
if (pf == "set_main_screen_editor") {
for (String E : { "\"2D\"", "\"3D\"", "\"Script\"", "\"AssetLib\"" }) {
for (String E : { "\"2D\"", "\"3D\"", "\"Script\"", "\"Game\"", "\"AssetLib\"" }) {
r_options->push_back(E);
}
} else if (pf == "get_editor_viewport_3d") {