diff options
author | Daniel Weipert <code@drogueronin.de> | 2020-12-31 11:33:12 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2020-12-31 11:33:12 +0100 |
commit | fb64f15e22acfc1c03c7c5357dd66077454adbcf (patch) | |
tree | 96cdbb8f59bd65609aa76276dfba94f9cdad33d4 /UI/LevelSelectCell.tscn |
Initial commit
Diffstat (limited to 'UI/LevelSelectCell.tscn')
-rw-r--r-- | UI/LevelSelectCell.tscn | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/UI/LevelSelectCell.tscn b/UI/LevelSelectCell.tscn new file mode 100644 index 0000000..968e913 --- /dev/null +++ b/UI/LevelSelectCell.tscn @@ -0,0 +1,58 @@ +[gd_scene load_steps=7 format=2] + +[ext_resource path="res://UI/LevelSelectCell.gd" type="Script" id=1] +[ext_resource path="res://Assets/Fonts/geometry-soft-pro/Geometry_Soft_Pro-Bold_N.otf" type="DynamicFontData" id=2] +[ext_resource path="res://Assets/Fonts/impact-label/Impact_Label_Reversed.ttf" type="DynamicFontData" id=3] + +[sub_resource type="StyleBoxFlat" id=1] +bg_color = Color( 0.133333, 0.372549, 0.188235, 1 ) +border_width_left = 1 +border_width_top = 1 +border_width_right = 1 +border_width_bottom = 1 + +[sub_resource type="DynamicFont" id=2] +size = 120 +font_data = ExtResource( 3 ) + +[sub_resource type="DynamicFont" id=3] +size = 20 +outline_size = 2 +outline_color = Color( 0, 0, 0, 1 ) +font_data = ExtResource( 2 ) + +[node name="LevelSelectCell" type="Panel"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_right = -683.0 +margin_bottom = -400.0 +hint_tooltip = "Select Level" +custom_styles/panel = SubResource( 1 ) +script = ExtResource( 1 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="ClearMark" type="Label" parent="."] +margin_top = 1.0 +margin_right = 341.0 +margin_bottom = 201.0 +custom_fonts/font = SubResource( 2 ) +text = "X" +align = 1 +valign = 1 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Time" type="Label" parent="."] +margin_left = 7.0 +margin_top = 3.0 +margin_right = 54.0 +margin_bottom = 24.0 +custom_fonts/font = SubResource( 3 ) +text = "0.00s" +valign = 1 +__meta__ = { +"_edit_use_anchors_": false +} |