has never worked for me, (they still pop up no matter what I do), your solution of delaying the tooltip is PERFECT, Thank you!
I was unable to make that a startup feature in any of the ini files, so instead I made a Text file called:
‘CommonConsoleCommandsUE4.txt’ that lists that and other common console commands, etc…
I then made a Batch file called:
‘CommonConsoleCommandsUE4.bat’ with the following:
start CommonConsoleCommandsUE4.txt
which opens the Txt file in Notepad when clicked. I then put a shortcut to this batch file on the Windows Quicklinks Bar for taskbar (one click to open). Now whenever I’m in Unreal I’m one click away from all the Console commands that are used regularly.
As mentioned by ’ akadingding’, it has been updated to: Slate.EnableTooltips 0
While the above works in the console, it needs to be modified to: Slate.EnableTooltips = 0 in the config file if you want it permanently. Otherwise the tips will show again next time you start up the editor. Without the ‘=’ added, it won’t work.
As per the notes in the ConsoleVariables.ini… it should go below this: [Startup]
I agree! These tooltips are comically fast and get in the way of everything…
There are two ways to correct this. One sets it for the current session, the other sets it for every new session you open…
Temporarily set the tooltips to a longer delay (for the current session):
Press the ` key to pull up the Console Command input.
Type Slate.TooltipSummonDelay 2 and press enter.
Permanently set the tooltips to a longer delay (for every new session):
Locate your Unreal Engine Version’s “Config” folder (Program Files > Epic Games > UE_5.3 > Engine > Config)
Double click to open “BaseEngine.ini”
Find [SystemSettings]
Under [SystemSettings] type Slate.TooltipSummonDelay = 2
Save the file.
Restart Unreal Engine.