This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
visual.tscn
76 lines (61 loc) · 2.17 KB
/
visual.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
[gd_scene load_steps=3 format=3 uid="uid://c61cort8o36ri"]
[ext_resource type="Script" path="res://visual/visual.gd" id="1_wp1mi"]
[ext_resource type="Script" path="res://settings.gd" id="2_vw6dv"]
[node name="Visual" type="Node2D"]
[node name="Canvas" type="Node2D" parent="."]
script = ExtResource("1_wp1mi")
[node name="Button" type="Button" parent="Canvas"]
offset_left = 387.0
offset_top = 187.0
offset_right = 750.0
offset_bottom = 404.0
text = "我是好康的游戏画面
:)"
[node name="Info" type="Label" parent="."]
unique_name_in_owner = true
offset_left = 879.0
offset_top = 300.0
offset_right = 972.0
offset_bottom = 323.0
[node name="GridContainer" type="GridContainer" parent="."]
offset_left = 883.0
offset_top = 42.0
offset_right = 1111.0
offset_bottom = 607.0
columns = 2
script = ExtResource("2_vw6dv")
[node name="Label" type="Label" parent="GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
text = "最大帧率"
[node name="FPS" type="OptionButton" parent="GridContainer"]
layout_mode = 2
item_count = 3
selected = 1
popup/item_0/text = "30"
popup/item_0/id = 0
popup/item_1/text = "60"
popup/item_1/id = 1
popup/item_2/text = "无限制"
popup/item_2/id = 2
[node name="Label2" type="Label" parent="GridContainer"]
layout_mode = 2
text = "返回首页"
[node name="BackToHome" type="Button" parent="GridContainer"]
layout_mode = 2
text = "action"
[node name="Label4" type="Label" parent="GridContainer"]
layout_mode = 2
text = "显示网格"
[node name="ShowDotGrid" type="CheckButton" parent="GridContainer"]
layout_mode = 2
button_pressed = true
[node name="Label3" type="Label" parent="GridContainer"]
layout_mode = 2
text = "显示坐标"
[node name="ShowVec" type="CheckButton" parent="GridContainer"]
layout_mode = 2
[connection signal="item_selected" from="GridContainer/FPS" to="GridContainer" method="_on_fps_item_selected"]
[connection signal="pressed" from="GridContainer/BackToHome" to="GridContainer" method="_on_back_to_home_pressed"]
[connection signal="toggled" from="GridContainer/ShowDotGrid" to="GridContainer" method="_on_show_dot_grid_toggled"]
[connection signal="toggled" from="GridContainer/ShowVec" to="GridContainer" method="_on_show_vec_toggled"]