online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/barbutton/BarTextureButton.gd')
| -rw-r--r-- | ui/barbutton/BarTextureButton.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/barbutton/BarTextureButton.gd b/ui/barbutton/BarTextureButton.gd index 4b21324..fa776a5 100644 --- a/ui/barbutton/BarTextureButton.gd +++ b/ui/barbutton/BarTextureButton.gd @@ -7,9 +7,9 @@ var focused = false export(Texture) var texture -export(Color) var normal_color -export(Color) var highlight_color -export(Color) var pressed_color +export(Color) var normal_color := Color.black +export(Color) var highlight_color := Color(0.243137, 0.129412, 0.129412) +export(Color) var pressed_color := Color(0.227451, 0.270588, 0.301961) onready var texture_button = $Texture onready var background = $Background |