OpenMiner/Notes

17 lines
195 B
Plaintext
Raw Permalink Normal View History

2018-06-19 20:43:52 -07:00
Notes
# Lua API integration
## HUD
```lua
2019-01-06 18:55:37 -08:00
local hud = LuaHUD.new()
2019-01-06 18:55:37 -08:00
hud:hotbar {
pos = {x = 42, y = 84},
texture = "default_hotbar.png",
slots = 8,
}
2019-01-06 18:55:37 -08:00
openminer:player():set_hud(hud)
2018-06-19 20:43:52 -07:00