Merge pull request #756 from monkeyx-net/feat/godot-configurator

Suggestion for alt row colours
This commit is contained in:
XargonWan 2024-04-18 16:41:55 +09:00 committed by GitHub
commit 91332bc83a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 48 additions and 47 deletions

View file

@ -41,4 +41,5 @@ func _ready():
for i in bios_line.size():
table_line.set_text(i, bios_line[i])
if table_line.get_index() % 2 == 1:
table_line.set_custom_bg_color(i,Color(1, 1, 1, 0.1),false)
table_line.set_custom_bg_color(i,Color(0.15, 0.15, 0.15, 1),false)
table_line.set_custom_color(i,Color(1,1,1,1))

File diff suppressed because one or more lines are too long