Go to file
2022-09-18 16:23:30 +02:00
textures Add settingtypes.txt & optimize images 2020-05-24 13:07:22 +02:00
init.lua Code quality: use new modlib functionality 2020-07-30 00:07:05 +02:00
main.lua Get rid of deprecated modlib.conf usage 2022-09-18 16:23:30 +02:00
mod.conf Updates via shellscript 2019-05-01 16:53:20 +02:00
Readme.md Get rid of deprecated modlib.conf usage 2022-09-18 16:23:30 +02:00
schema.lua Get rid of deprecated modlib.conf usage 2022-09-18 16:23:30 +02:00
screenshot.png Add settingtypes.txt & optimize images 2020-05-24 13:07:22 +02:00
settingtypes.txt Get rid of deprecated modlib.conf usage 2022-09-18 16:23:30 +02:00

HUD Timers (hud_timers)

A library for easily maintaining HUD timers.

HUD timers are colorful yet subtle bars indicating some time consuming process.

About

Configuration help can be found under config_help.md in the same folder as this.

Depends on modlib.

Please note that this mod may not work along well with other mods altering the HUD.

Code licensed under the MIT License. Written by Lars Mueller alias LMD or appguru(eu).

Media license: files taken or derived from hudbars

  • textures/hudbars_bar_background.png: made by Wuzzy, licensed under MIT
  • textures/hud_timers_bar_timeout.png: made by LMD, but very similar, can be seen as derivative of Wuzzy's work, therefore licensed under MIT as well

All in all, the media is licensed under the MIT license, with credits going to Wuzzy.

Screenshot

Screenshot

API

Code should be self-explanatory. If not, feel free to contact me (opening an issue is also fine). Will probably document it here at some point...

Configuration

format

The format for the timer label - first string is timer name, second one is seconds left.

  • Type: string
  • Default: %s: %s s

globalstep

How often timers should be updated (interval duration in seconds).

  • Type: number
  • Default: 0.1
  • >= 0

hud_pos

Screen coordinates where the timer stack should start.

hud_timers_max

How many timers(maximum) may exist at a time.

  • Type: number
  • Default: 10
  • >= 0
  • <= 100