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
In your case you would select "Full Screen" mode then select one of the resolution options.
It should work the same in demo and full game.
Side note: if the resolution options don't seem to work for you, you can try enabling the "widescreen scaling" mode. I recommend only using it if you can get a ratio width/height of at least 1.7 or some of the buttons won't be visible.
Edit: added the side note about widescreen
https://docs.unity3d.com/Manual/PlayerCommandLineArguments.html
try setting the fullscreen command line argument, that should be sufficient, if not also set the screen-width and height.
I will also add another confirm button in the top left corner in case others get stuck as well.
Let me know
I've changed the default launch parameters for the game on Steam to start in Fullscreen mode (the first time). If you uninstall and re-install the game it should work.
If this still doesn't work for your monitor resolution, you can try the following command line arguments after re-installing the game. On Steam select "Browse Local Files" (right click on game name, in the tiny menu). and launch the game with the following parameters:
```
-screen-fullscreen 1 -screen-width 1920 -screen-height 1080
```
You can set the width/height to something else as long as the ratio is 1.7 and above. For example a width of 1366 and height of 768
You only need to do this once so can access then save those graphic options in the game settings afterwards.
If this still doesn't work, you can tweak the graphics settings outside of the game, make sure to close the game first.
on Windows, edit game settings with regedit, path
```
HKEY_CURRENT_USER\SOFTWARE\Unity\UnityEditor\Fire Biscuit Games\Paladin Oath
```
on Mac, settings should be in this plist file:
```
~/Library/Preferences/com.FireBiscuit.PaladinOath.plist (or similar)
```
on Linux, settings should be in this xml file:
~/.config/unity3d/Fire Biscuit Games/Paladin Oath/prefs
Keys (there might be some extra digits at the end of the key):
game.settings.resolution.fullscreen -> set value 0
game.settings.resolution.width -> set value that you want (ex: 1366 or 1920)
game.settings.resolution.height -> set value that you want (ex: 768 or 1080)
Save after making the changes and restart the game.
Source (standalone player)
https://docs.unity3d.com/ScriptReference/PlayerPrefs.html
Also documented the above in the Paladin's Oath wiki:
https://paladinsoath.fandom.com/wiki/Graphics_Settings
Hope this helps!
I run Ubuntu 20.04.4 LTS and my graphics card is an Intel® HD Graphics 4000 (it's a Dell Latitude with a 1366x768 resolution). It's fixed on my end, but I don't know if other people will have issues. But thanks for being so responsive!
I'm glad it's resolved for you now :) I've also documented this in the wiki for others in case they have the same issue.