blob: 4b507fe1ccfc504f6befdb238ab357bcdfceb4fd (
plain)
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
|
[gd_scene load_steps=3 format=2]
[ext_resource path="res://test_input.gd" type="Script" id=1]
[ext_resource path="res://fonts/font_regular.tres" type="DynamicFont" id=2]
[node name="main" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="debug" type="RichTextLabel" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
custom_fonts/normal_font = ExtResource( 2 )
scroll_following = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="a" type="ColorRect" parent="."]
anchor_right = 0.66
anchor_bottom = 0.66
color = Color( 1, 0, 0, 0.196078 )
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="b" type="ColorRect" parent="a"]
anchor_left = 0.5
anchor_right = 1.502
anchor_bottom = 1.0
mouse_filter = 1
color = Color( 0, 1, 0, 0.196078 )
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="c" type="ColorRect" parent="."]
anchor_top = 0.333
anchor_right = 0.666
anchor_bottom = 1.0
color = Color( 0, 0, 1, 0.196078 )
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="d" type="ColorRect" parent="c"]
anchor_left = 0.5
anchor_right = 1.502
anchor_bottom = 1.0
color = Color( 1, 1, 1, 0.196078 )
script = ExtResource( 1 )
|