small racing game im working on
Diffstat (limited to 'ui/editor/help.tscn')
| -rw-r--r-- | ui/editor/help.tscn | 42 |
1 files changed, 28 insertions, 14 deletions
diff --git a/ui/editor/help.tscn b/ui/editor/help.tscn index 1ee09ed..166bc33 100644 --- a/ui/editor/help.tscn +++ b/ui/editor/help.tscn @@ -1,13 +1,27 @@ -[gd_scene load_steps=6 format=3 uid="uid://dby5rfnqh7bw8"] +[gd_scene load_steps=7 format=3 uid="uid://dby5rfnqh7bw8"] -[ext_resource type="Theme" uid="uid://d3ywcokn5ddy8" path="res://ui/theme.tres" id="1_srttm"] -[ext_resource type="StyleBox" uid="uid://dxtsrhgnyr80k" path="res://ui/panel_dark.stylebox" id="2_68enl"] -[ext_resource type="Theme" uid="uid://chcid6jp4t311" path="res://ui/editor/input_theme.tres" id="3_o1e7a"] -[ext_resource type="Script" path="res://addons/@bendn/remap/ActionLabel.gd" id="4_i6gxf"] +[ext_resource type="StyleBox" uid="uid://dxtsrhgnyr80k" path="res://ui/panel_dark.stylebox" id="1_wnpue"] +[ext_resource type="Theme" uid="uid://d3ywcokn5ddy8" path="res://ui/theme.tres" id="2_6tbpq"] +[ext_resource type="Script" path="res://addons/@bendn/remap/ActionLabel.gd" id="2_ye7r6"] [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_qrm46"] content_margin_right = 5.0 +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_cixwx"] +content_margin_left = 5.0 +content_margin_top = 5.0 +content_margin_right = 5.0 +content_margin_bottom = 5.0 +bg_color = Color(0.027451, 0.211765, 0.258824, 1) +corner_radius_top_left = 15 +corner_radius_top_right = 15 +corner_radius_bottom_right = 15 +corner_radius_bottom_left = 15 +corner_detail = 12 + +[sub_resource type="Theme" id="Theme_v23rf"] +PanelContainer/styles/panel = SubResource("StyleBoxFlat_cixwx") + [node name="help" type="Window"] title = "how to editor" position = Vector2i(0, 36) @@ -15,7 +29,7 @@ size = Vector2i(1024, 512) wrap_controls = true transient = true min_size = Vector2i(512, 256) -theme = ExtResource("1_srttm") +theme = ExtResource("2_6tbpq") [node name="panel" type="PanelContainer" parent="."] anchors_preset = 15 @@ -23,7 +37,7 @@ anchor_right = 1.0 anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 -theme_override_styles/panel = ExtResource("2_68enl") +theme_override_styles/panel = ExtResource("1_wnpue") [node name="inputs" type="ScrollContainer" parent="panel"] layout_mode = 2 @@ -79,12 +93,12 @@ fit_content = true [node name="inputs" type="VBoxContainer" parent="panel/inputs/vbox"] layout_mode = 2 size_flags_horizontal = 3 -theme = ExtResource("3_o1e7a") +theme = SubResource("Theme_v23rf") [node name="pan" type="HBoxContainer" parent="panel/inputs/vbox/inputs"] layout_mode = 2 tooltip_text = "Pans the camera" -script = ExtResource("4_i6gxf") +script = ExtResource("2_ye7r6") _name = "pan" action = "ui_pan" font_size = 25 @@ -92,7 +106,7 @@ font_size = 25 [node name="depth+" type="HBoxContainer" parent="panel/inputs/vbox/inputs"] layout_mode = 2 tooltip_text = "While holding the block, pressing this button will move the block further away from the camera." -script = ExtResource("4_i6gxf") +script = ExtResource("2_ye7r6") _name = "depth far" action = "change_depth+" font_size = 25 @@ -100,7 +114,7 @@ font_size = 25 [node name="depth-" type="HBoxContainer" parent="panel/inputs/vbox/inputs"] layout_mode = 2 tooltip_text = "While holding the block, pressing this button will move the block closer to the camera." -script = ExtResource("4_i6gxf") +script = ExtResource("2_ye7r6") _name = "depth close" action = "change_depth-" font_size = 25 @@ -108,7 +122,7 @@ font_size = 25 [node name="freelook" type="HBoxContainer" parent="panel/inputs/vbox/inputs"] layout_mode = 2 tooltip_text = "Pressing this button will rotate the camera, according to the mouse." -script = ExtResource("4_i6gxf") +script = ExtResource("2_ye7r6") _name = "freelook" action = "freelook" font_size = 25 @@ -116,7 +130,7 @@ font_size = 25 [node name="zoom_in" type="HBoxContainer" parent="panel/inputs/vbox/inputs"] layout_mode = 2 tooltip_text = "Zooms the camera in." -script = ExtResource("4_i6gxf") +script = ExtResource("2_ye7r6") _name = "zoom in" action = "zoom_in" font_size = 25 @@ -124,7 +138,7 @@ font_size = 25 [node name="zoom_out" type="HBoxContainer" parent="panel/inputs/vbox/inputs"] layout_mode = 2 tooltip_text = "Zooms the camera out." -script = ExtResource("4_i6gxf") +script = ExtResource("2_ye7r6") _name = "zoom out" action = "zoom_out" font_size = 25 |