Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
If you don't find a way I hope you can still enjoy it.
At this moment I don't think you can.
It looks like a design choice.
I need to know how to do this if it IS possible. I'm recording my Undertale gameplay and I'm at the Omega Flowey fight where when the game launches, it has the edited intro with cracked screen. Anyway, I need to record that and I can't have the video small for a sec and then fullscreen.
Damned if you do, damned if you don't. Another ressurected thread. I just lazily googled it. Here is a video. I don't really care about this thread anymore. https://youtu.be/RuNU8Z7hpdU
-------------- Bad mood right now.
I apologize for my earlier post. I hope you find a solution and that they update it to allow it to start in fullscreen for you and others someday.
I'm spreading the word because none of the threads seem to answer this question
$ps = Start-Process -PassThru -FilePath "f:\Games\Undertale\UNDERTALE.exe" -WindowStyle Normal
$wshell = New-Object -ComObject wscript.shell
$wshell.AppActivate('undertale')
Sleep 3
$wshell.SendKeys('{F4}')
$ps.WaitForExit()
$ps.Dispose()
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance Force
#IfWinActive, ahk_exe UNDERTALE.exe
w::Up
s::Down
a::Left
d::Right
#IfWinActive
Furthermore, I wrote a batch script that runs both UNDERTALE.exe and the AutoHotKey script simultaneously. Here's that:
Finally, here is the launch argument for Steam that redirects the launcher to the .bat file instead of the EXE file:
The only downside seems to be that if you close the game via the X button or through steam it won't kill the AutoHotKey script for some reason. However, holding Esc will kill both.