Thread: Video Settings
View Single Post
02/17/24, 11:17 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 5,011
Moved to lua/XML forum

-eso64.exe params: I do not know any and I do neither know a list of possible params
-ingame API: There exist functions like SetSettings() to change the values of some settings
Check file esoui\pregameandingame\optionspanels\optionspanel_video_shared.lua

e.g.
SetSetting(SETTING_TYPE_GRAPHICS, GRAPHICS_SETTING_FULLSCREEN, FullScreenMode)

-FullScreenMode-
FULLSCREEN_MODE_WINDOWED = 0
FULLSCREEN_MODE_FULLSCREEN_WINDOWED = 1
FULLSCREEN_MODE_FULLSCREEN_EXCLUSIVE = 2

Same with GetSetting
if GetSetting(SETTING_TYPE_GRAPHICS, GRAPHICS_SETTING_FULLSCREEN) == FULLSCREEN_MODE_FULLSCREEN_EXCLUSIVE then
...
end

Last edited by Baertram : 02/17/24 at 08:04 PM.
  Reply With Quote