diff options
| -rw-r--r-- | fonts/font_regular.tres | 2 | ||||
| -rw-r--r-- | logic/popup_list.gd | 5 | ||||
| -rw-r--r-- | main.tscn | 6 |
3 files changed, 11 insertions, 2 deletions
diff --git a/fonts/font_regular.tres b/fonts/font_regular.tres index 01b4567..d42e75b 100644 --- a/fonts/font_regular.tres +++ b/fonts/font_regular.tres @@ -3,6 +3,6 @@ [ext_resource path="res://fonts/B612Mono-Regular.ttf" type="DynamicFontData" id=1] [resource] -size = 32 +size = 42 use_filter = true font_data = ExtResource( 1 ) diff --git a/logic/popup_list.gd b/logic/popup_list.gd index 1dd156c..43bf2a1 100644 --- a/logic/popup_list.gd +++ b/logic/popup_list.gd @@ -2,7 +2,8 @@ extends Popup signal item_selected -onready var item_list := get_node("list") as TouchItemList +onready var item_list := get_node("list") as TouchItemList +onready var blur := get_node("blur") as ColorRect func _ready(): @@ -15,6 +16,8 @@ func popup_options(options: Array): for it in options: item_list.add_item(it) self.popup_centered_ratio(0.9) + blur.rect_global_position = Vector2.ZERO + blur.rect_size = get_viewport_rect().size func selected(index: int): @@ -317,6 +317,12 @@ anchor_bottom = 1.0 popup_exclusive = true script = ExtResource( 10 ) +[node name="blur" type="ColorRect" parent="popup_list"] +show_behind_parent = true +anchor_right = 1.0 +anchor_bottom = 1.0 +color = Color( 0, 0, 0, 0.75 ) + [node name="list" parent="popup_list" instance=ExtResource( 11 )] margin_top = 0.0 |
