-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwindows.tscn
84 lines (74 loc) · 2.07 KB
/
windows.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[gd_scene load_steps=4 format=2]
[ext_resource path="res://windows.gd" type="Script" id=1]
[sub_resource type="Shader" id=1]
[sub_resource type="ShaderMaterial" id=2]
shader = SubResource( 1 )
[node name="Node2D" type="Node2D"]
script = ExtResource( 1 )
[node name="HBoxContainer" type="HBoxContainer" parent="."]
margin_top = 1.63629
margin_right = 1027.0
margin_bottom = 598.636
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="HBoxContainer"]
visible = false
margin_right = 44.0
margin_bottom = 597.0
size_flags_stretch_ratio = 2.0
[node name="Open" type="Button" parent="HBoxContainer/VBoxContainer"]
visible = false
margin_right = 44.0
margin_bottom = 20.0
text = "open"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Save" type="Button" parent="HBoxContainer/VBoxContainer"]
visible = false
margin_top = 24.0
margin_right = 44.0
margin_bottom = 44.0
text = "save"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Editor" type="TextEdit" parent="HBoxContainer"]
material = SubResource( 2 )
margin_right = 1027.0
margin_bottom = 596.0
rect_pivot_offset = Vector2( 100, 100 )
size_flags_horizontal = 3
custom_colors/code_folding_color = Color( 0.392157, 0.854902, 0.133333, 1 )
custom_constants/line_spacing = 10
custom_constants/completion_lines = 4
custom_constants/completion_max_width = 2
custom_constants/completion_scroll_width = 3
text = "New note
"
highlight_current_line = true
show_line_numbers = true
draw_tabs = true
draw_spaces = true
fold_gutter = true
highlight_all_occurrences = true
wrap_enabled = true
minimap_width = 90
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Stats" type="RichTextLabel" parent="."]
margin_left = 921.885
margin_top = 544.003
margin_right = 1011.88
margin_bottom = 584.003
size_flags_horizontal = 5
size_flags_vertical = 5
text = "
"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="button_down" from="HBoxContainer/VBoxContainer/Save" to="." method="_on_Save_button_down"]
[connection signal="text_changed" from="HBoxContainer/Editor" to="." method="_on_Editor_text_changed"]