White HUD
Posted: Fri Mar 10, 2006 2:59 pm
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.
Convertible
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}