-
-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Give focus to game on run #692
Comments
When I hit F5 to launch the game, it opens on top of VSCode and is focused, UNLESS I interact with VSCode during the brief delay while the game is launching, in which case I get the behavior you're describing. |
It is weird, the run window used to behave like you described @DaelonSuzuka but I too now have the same issue. When hitting F5, the window does not pop into focus and stay behind. I tried to find what changed but couldn't find any changes on neither the project settings nor the vscode settings. The launch config looks standard: "configurations": [
{
"name": "GDScript: Launch Project",
"type": "godot",
"request": "launch",
"project": "${workspaceFolder}",
"debug_collisions": false,
"debug_paths": false,
"debug_navigation": false,
"additional_options": ""
}
] I run into the issue on both 4.2.2 and I just tried 4.3 to see and still the same. TBH, not sure how much the plugin can solve this. |
For clarity, I do not interact with VSCode during the brief delay as it launches. (tried again a few more times to be sure) |
Godot version
4.2.2.stable.official
VS Code version
1.92.0
Godot Tools VS Code extension version
2.1.0
System information
Windows 11
Problem statement
When running the game, focus is still on VS Code editor, requiring an Alt-tab to switch focus to the game.
Is it possible to optionally give focus to the game automatically? While a very small QoL feature, it would be very appreciated!
I could not find this setting in the command line documentation for godot, and yet when running directly from godot engine focus is given to the game.
Proposed solution
Optionally give focus to the game automatically upon run/run with debug.
Perhaps by using a powershell command?
The text was updated successfully, but these errors were encountered: