1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-10 14:26:01 +00:00

texture:: raw_texture_opacity parameter

This commit is contained in:
Zeno Rogue
2024-10-06 22:23:10 +02:00
parent bcb1732433
commit f8f4770c60
2 changed files with 10 additions and 1 deletions

View File

@@ -1524,6 +1524,10 @@ EX void initConfig() {
#if CAP_TEXTURE
param_b(texture::texture_aura, "texture-aura", false);
param_i(texture::raw_texture_opacity, "raw_texture_opacity", 32)
->editable(0, 255, 16, "raw texture opacity", "", 'R')
->set_sets([] { dialog::bound_low(0); dialog::bound_up(255); });
#endif
param_f(vid.smart_range_detail, "smart-range-detail", 8)