Page 1 of 1

White HUD

Posted: Fri Mar 10, 2006 2:59 pm
by Convertible
Hi all,

I was playing around in the view.lua file and tried to make the HUD white to try to match what I have seen from the real Tbirds with great success. All you need to do is to change the line at the very bottom for the F15 to {255, 255, 255} in the view.lua file. I flight tested it the other night and it looks really good both in the air and on the ground. Just thought you might want to know if interested. I have also found a really neat mint green color if you want to try it: {70, 255, 160}. I have been using this one for a while, but still like the white better though.

Code: Select all

-- HUD RGB color 
HUDColor = {}
HUDColor[PlaneIndex.iSu_27] = {0, 255, 0}
HUDColor[PlaneIndex.iSu_33] = {0, 255, 0}
HUDColor[PlaneIndex.iSu_25] = {255, 255, 0}
HUDColor[PlaneIndex.iSu_39] = {0, 255, 0}
HUDColor[PlaneIndex.iMiG_29] = {0, 255, 0}
HUDColor[PlaneIndex.iMiG_29K] = {0, 255, 0}
HUDColor[PlaneIndex.iA_10] = {0, 255, 0}
HUDColor[PlaneIndex.iF_15] = {0, 255, 0}
Convertible

Posted: Tue Mar 21, 2006 4:35 am
by Lawndart
My HUD rocks now! Thanks for pointing this out!

Posted: Tue Mar 21, 2006 11:15 am
by Redeye
Flying with it for awhile now and i like it. Nice find Con.

Posted: Tue Mar 21, 2006 12:30 pm
by Burner
I'll second that, white HUD is where its at :D

Posted: Tue Mar 21, 2006 3:45 pm
by Convertible
Glad I could help out. I like it too.

Vertible