-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTurnMenus.tscn
58 lines (47 loc) · 1.69 KB
/
TurnMenus.tscn
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
49
50
51
52
53
54
55
56
57
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Fonts/Independent Modern 8x16.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://Fonts/Terminus.tres" type="DynamicFont" id=2]
[ext_resource path="res://EconPhase/Income/IncomeContents.tscn" type="PackedScene" id=3]
[ext_resource path="res://EconPhase/Expense/ExpenseContents.tscn" type="PackedScene" id=4]
[ext_resource path="res://EconPhase/Summary/SummaryContents.tscn" type="PackedScene" id=5]
[sub_resource type="DynamicFont" id=1]
outline_size = 2
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 1 )
[node name="TurnMenus" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="TabContainer" type="TabContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
custom_fonts/font = SubResource( 1 )
[node name="Income" type="Tabs" parent="TabContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 39.0
margin_right = -4.0
margin_bottom = -4.0
custom_fonts/font = ExtResource( 2 )
scrolling_enabled = false
[node name="IncomeContents" parent="TabContainer/Income" instance=ExtResource( 3 )]
[node name="Expense" type="Tabs" parent="TabContainer"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 39.0
margin_right = -4.0
margin_bottom = -4.0
scrolling_enabled = false
[node name="ExpenseContents" parent="TabContainer/Expense" instance=ExtResource( 4 )]
[node name="Summary" type="Tabs" parent="TabContainer"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 39.0
margin_right = -4.0
margin_bottom = -4.0
scrolling_enabled = false
[node name="SummaryContents" parent="TabContainer/Summary" instance=ExtResource( 5 )]