This is a hud branch build. It includes Win64 executables and source files for Linux testers.
Download:
http://sourceforge.net/projects/vdrift/f...z/download
Source\Data branches:
https://github.com/VDrift/vdrift/tree/hud
http://sourceforge.net/p/vdrift/code/HEA...t-data-hud
The files of interest for hud modding are:
data/skins/simple/menus/Hud
data/skins/simple/menus/GaugesHud
data/settings/options.config
You can modify the existing hud pages (Hud, GaugesHud) or add your own hud pages (MyFancyHud).
When adding a new hud page you have to tell the game about it. Edit options.config display.hud list like this:
Code:
[ display.hud ]
desc = Change head-up display mode.
type = string
default = Hud
values = list
num_vals = 4
...
opt03 = Fancy
val03 = MyFancyHud
PS:
Current hud selection implementation has a minor deficiency. All hud pages are updated each frame. So don't go all crazy adding dozens of hud pages (yes, this can be fixed, I consider it a minor issue though)