I'm really new to the Unreal Engine 4 and I need some help, I can't find the answer on the internet so I hope someone here can help.
When I go to the Package project (Windows) when I open the game, how do I make it always and by default in full screen? So when I open the game it will be in full screen.
Is there a blueprint I can use to do this? If not and you have to program it, can you please tell me the exact location of where I have to put the code or whatever, because like I said. I am very new and barley know the interface and how to use it. (I've come from Unity)
If you have selected "New Editor Window (PIE)" you can press F11 to play in full screen, or you can use console command: r.SetRes [YourMonitor'sNativeRes -noBrackets]f example: r.SetRes 1920x1080f
If you choose the Standalone Game, you can use the Console Command: fullscreen
or you can go in Editor Preferences/Play/Play in New Window: Change the size to your monitor's native resolution
In Blueprint you can use the "Execute Console Command" node and type "fullscreen" for the input command, as shown in here