Hello!
We are almost at the end of developing Conscious
http://www.conscious-game.com, but we are a little bit stuck with the HD fullscreen HUD issue. The idea is to have the HUD displayed fully in its real detail, but its size should be 1920*1080. The problem is that FPSC "sees the world" in a 1024*768 way.
I have noticed that even if I change the resolution, the HUDs does not become "smaller". You know, when you use a HUD that is of big resolution, you can only see the middle of it in FPSC, not the whole HUD. This is my problem with the HUDs, because I am using 1920*1080 pixels fullscreen HUDs. So far, I thought that when I set the resolution to 1920*1080, the HUDs will be displayed in their original size in the game. But the game still "thinks" in 1024*768.
I could make the HUD to be displayed in 1024*768 when testing, so I could see the whole HUD, however, it was distorted, as the original is in 1920*1080 resolution. If I set the hudsize to FULL HD, only a little of the image will be displayed in test mode(1024*768), and even in a "converted out" mode where I can modify the resolution with gamestarter. Only when hudsizex=1024 and hudsizey=768 (in the hud script) can the hud appear in its full size. If I keep it 1024*768, and make a game executable, and set the game's resolution to 1920*1080 or 1440*900, the HUD is displayed in its full size, however, it is distorted and seems really low-res.
Is there a way to set the whole FPSC or only the HUD to a "native 1920*1080" resolution?
The script: (only the second line in under tesing, it has the modified values)
:state=0:hudreset,hudx=50,hudy=50,hudimage=gamecore/huds/HUDGIFS/1920/ProRedHudHD.png,hudname=less300,hudhide=1,hudmake=display,
:state=0:hudreset,hudsizex=1024,hudsizey=768,hudx=50,hudy=50,hudimage=gamecore/huds/HUDGIFS/1920/supernaturalpiros.png,hudname=dreamhud,hudhide=1,hudmake=display,
:state=0:hudreset,hudx=50,hudy=50,hudimage=gamecore/huds/HUDGIFS/1920/SeriouslyHurtHudHD.png,hudname=less100,hudhide=1,hudmake=display,
:state=0:hudreset,hudx=50,hudy=50,hudimage=gamecore/huds/HUDGIFS/1920/SkullRedHudHD.png,hudname=nohealth,hudhide=1,hudmake=display,state=1
:state=1,plrhealthgreater=50:hudunshow=less300,hudunshow=less100,hudunshow=nohealth,hudshow=dreamhud
:state=1,plrhealthless=50,plrhealthgreater=25:hudunshow=nohealth,hudunshow=less100,hudshow=dreamhud,hudshow=less300,music=audiobank\user\heavybreathing.wav
:state=1,plrhealthless=24,plrhealthgreater=1:hudunshow=nohealth,hudshow=dreamhud,hudshow=less100
:state=1,plrhealthless=1:hudunshow=less100,hudshow=dreamhud,hudshow=nohealth,music=0
Thank you very much!