blob: 7d7e4f2fca90379a7560eaca6b3b70200518b55a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
[gd_scene load_steps=10 format=2]
[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://screens/TaskManager/Body.gd" type="Script" id=2]
[ext_resource path="res://icons/arrow-right.png" type="Texture" id=4]
[ext_resource path="res://icons/arrow-left-hi.png" type="Texture" id=5]
[ext_resource path="res://icons/arrow-left.png" type="Texture" id=6]
[ext_resource path="res://icons/arrow-right-hi.png" type="Texture" id=7]
[sub_resource type="DynamicFont" id=1]
size = 60
font_data = ExtResource( 1 )
[sub_resource type="StyleBoxFlat" id=2]
bg_color = Color( 0.239216, 0.231373, 0.27451, 1 )
border_width_right = 40
border_color = Color( 0, 0, 0, 0 )
expand_margin_left = 10.0
expand_margin_right = 10.0
[sub_resource type="StyleBoxFlat" id=3]
bg_color = Color( 0.176471, 0.168627, 0.2, 1 )
border_width_right = 40
border_color = Color( 0, 0, 0, 0 )
expand_margin_left = 10.0
expand_margin_right = 10.0
[node name="TaskManagerBody" type="VBoxContainer"]
margin_left = 20.0
margin_top = 20.0
margin_right = 1060.0
margin_bottom = 1676.0
script = ExtResource( 2 )
[node name="Tabs" type="TabContainer" parent="."]
unique_name_in_owner = true
margin_right = 1040.0
margin_bottom = 1656.0
size_flags_vertical = 3
custom_constants/side_margin = 20
custom_fonts/font = SubResource( 1 )
custom_icons/increment_highlight = ExtResource( 7 )
custom_icons/increment = ExtResource( 4 )
custom_icons/decrement_highlight = ExtResource( 5 )
custom_icons/decrement = ExtResource( 6 )
custom_styles/tab_fg = SubResource( 2 )
custom_styles/tab_bg = SubResource( 3 )
tab_align = 0
|