This repository was archived by the owner on May 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +134
-4
lines changed Expand file tree Collapse file tree 8 files changed +134
-4
lines changed Original file line number Diff line number Diff line change
1
+ extends BaseSidebar
2
+
3
+ ## #############################################################################
4
+ # Builtin functions #
5
+ ## #############################################################################
6
+
7
+ func _ready () -> void :
8
+ pass
9
+
10
+ ## #############################################################################
11
+ # Connections #
12
+ ## #############################################################################
13
+
14
+ func _on_apply_button_pressed () -> void :
15
+ pass
16
+
17
+ func _on_reset_button_pressed () -> void :
18
+ pass
19
+
20
+ ## #############################################################################
21
+ # Private functions #
22
+ ## #############################################################################
23
+
24
+ ## #############################################################################
25
+ # Public functions #
26
+ ## #############################################################################
27
+
28
+ func save () -> Dictionary :
29
+ return {}
Original file line number Diff line number Diff line change 1
- [gd_scene load_steps =2 format =2 ]
1
+ [gd_scene load_steps =3 format =2 ]
2
2
3
3
[ext_resource path ="res://screens/gui/BaseSidebar.tscn" type ="PackedScene" id =1 ]
4
+ [ext_resource path ="res://screens/gui/AppSettingsViewLeft.gd" type ="Script" id =2 ]
4
5
5
6
[node name ="AppSettingsViewLeft" instance =ExtResource ( 1 )]
7
+ script = ExtResource ( 2 )
Original file line number Diff line number Diff line change
1
+ extends BaseSidebar
2
+
3
+ ## #############################################################################
4
+ # Builtin functions #
5
+ ## #############################################################################
6
+
7
+ func _ready () -> void :
8
+ pass
9
+
10
+ ## #############################################################################
11
+ # Connections #
12
+ ## #############################################################################
13
+
14
+ func _on_apply_button_pressed () -> void :
15
+ pass
16
+
17
+ func _on_reset_button_pressed () -> void :
18
+ pass
19
+
20
+ ## #############################################################################
21
+ # Private functions #
22
+ ## #############################################################################
23
+
24
+ ## #############################################################################
25
+ # Public functions #
26
+ ## #############################################################################
27
+
28
+ func save () -> Dictionary :
29
+ return {}
Original file line number Diff line number Diff line change 1
- [gd_scene load_steps =2 format =2 ]
1
+ [gd_scene load_steps =3 format =2 ]
2
2
3
3
[ext_resource path ="res://screens/gui/BaseSidebar.tscn" type ="PackedScene" id =1 ]
4
+ [ext_resource path ="res://screens/gui/AppSettingsViewRight.gd" type ="Script" id =2 ]
4
5
5
6
[node name ="AppSettingsViewRight" instance =ExtResource ( 1 )]
7
+ script = ExtResource ( 2 )
Original file line number Diff line number Diff line change
1
+ extends BaseSidebar
2
+
3
+ ## #############################################################################
4
+ # Builtin functions #
5
+ ## #############################################################################
6
+
7
+ func _ready () -> void :
8
+ _setup ()
9
+
10
+ ## #############################################################################
11
+ # Connections #
12
+ ## #############################################################################
13
+
14
+ func _on_apply_button_pressed () -> void :
15
+ push_error ("Not yet implemented" )
16
+
17
+ func _on_reset_button_pressed () -> void :
18
+ push_error ("Not yet implemented" )
19
+
20
+ ## #############################################################################
21
+ # Private functions #
22
+ ## #############################################################################
23
+
24
+ func _setup () -> void :
25
+ pass
26
+
27
+ ## #############################################################################
28
+ # Public functions #
29
+ ## #############################################################################
30
+
31
+ func save () -> Dictionary :
32
+ return {}
Original file line number Diff line number Diff line change 1
- [gd_scene load_steps =2 format =2 ]
1
+ [gd_scene load_steps =3 format =2 ]
2
2
3
3
[ext_resource path ="res://screens/gui/BaseSidebar.tscn" type ="PackedScene" id =1 ]
4
+ [ext_resource path ="res://screens/gui/PresetViewLeft.gd" type ="Script" id =2 ]
4
5
5
6
[node name ="PresetViewLeft" instance =ExtResource ( 1 )]
7
+ script = ExtResource ( 2 )
Original file line number Diff line number Diff line change
1
+ extends BaseSidebar
2
+
3
+ ## #############################################################################
4
+ # Builtin functions #
5
+ ## #############################################################################
6
+
7
+ func _ready () -> void :
8
+ _setup ()
9
+
10
+ ## #############################################################################
11
+ # Connections #
12
+ ## #############################################################################
13
+
14
+ func _on_apply_button_pressed () -> void :
15
+ push_error ("Not yet implemented" )
16
+
17
+ func _on_reset_button_pressed () -> void :
18
+ push_error ("Not yet implemented" )
19
+
20
+ ## #############################################################################
21
+ # Private functions #
22
+ ## #############################################################################
23
+
24
+ func _setup () -> void :
25
+ pass
26
+
27
+ ## #############################################################################
28
+ # Public functions #
29
+ ## #############################################################################
30
+
31
+ func save () -> Dictionary :
32
+ return {}
Original file line number Diff line number Diff line change 1
- [gd_scene load_steps =2 format =2 ]
1
+ [gd_scene load_steps =3 format =2 ]
2
2
3
3
[ext_resource path ="res://screens/gui/BaseSidebar.tscn" type ="PackedScene" id =1 ]
4
+ [ext_resource path ="res://screens/gui/PresetViewRight.gd" type ="Script" id =2 ]
4
5
5
6
[node name ="PresetViewRight" instance =ExtResource ( 1 )]
7
+ script = ExtResource ( 2 )
You can’t perform that action at this time.
0 commit comments