hud.conf.with_hunger 1011 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Better HUD config file, with Hunger mod.
  3. This file mirrors the default settings of the Better HUD mod,
  4. except that it moves the "breath" bar upwards to make room
  5. for the "thirst" bar.
  6. Use this config file as a starting point if you *do* have the
  7. Hunger mod enabled.
  8. For more information, see hud.conf.example in the mods/hud
  9. directory.
  10. ]]
  11. HUD_SB_SIZE = { x = 24, y = 24 }
  12. --[[ Layout:
  13. (AIR)
  14. ARMOR | THIRST
  15. HEALTH | HUNGER
  16. ]]
  17. HUD_HEALTH_POS = { x = 0.5, y = 1 }
  18. HUD_HEALTH_OFFSET = { x = -262, y = -87 }
  19. -- At the time of writing, the Hunger mod contains code to swap
  20. -- the positions of "hunger" and "air", so these positions are
  21. -- "un-swapped"...
  22. HUD_HUNGER_POS = { x = 0.5, y = 1 }
  23. HUD_HUNGER_OFFSET = { x = 15, y = -133 }
  24. HUD_AIR_POS = { x = 0.5, y = 1 }
  25. HUD_AIR_OFFSET = { x = 15, y = -87 }
  26. HUD_ARMOR_POS = { x = 0.5, y = 1 }
  27. HUD_ARMOR_OFFSET = { x = -262, y = -110 }
  28. HUD_THIRST_POS = { x = 0.5, y = 1 }
  29. HUD_THIRST_OFFSET = { x = 15, y = -110 }