summaryrefslogtreecommitdiff
path: root/test.tscn
diff options
context:
space:
mode:
Diffstat (limited to 'test.tscn')
-rw-r--r--test.tscn80
1 files changed, 80 insertions, 0 deletions
diff --git a/test.tscn b/test.tscn
new file mode 100644
index 0000000..7421bfe
--- /dev/null
+++ b/test.tscn
@@ -0,0 +1,80 @@
+[gd_scene load_steps=9 format=3 uid="uid://ctyp7ogh4dg4m"]
+
+[ext_resource type="Texture2D" uid="uid://dasy6m8kpf6ca" path="res://img/pc/wallpaper.jpg" id="1_37kl0"]
+[ext_resource type="Script" uid="uid://d0f04tfkwu6d5" path="res://scripts/app.gd" id="2_6uqi0"]
+[ext_resource type="Texture2D" uid="uid://bkd1wowcckcp3" path="res://img/pc/notepad.png" id="2_8uh7m"]
+[ext_resource type="Texture2D" uid="uid://ch74o71t4kjv" path="res://img/pc/folder.png" id="4_ppyta"]
+[ext_resource type="Script" uid="uid://d2k4wxk8xqctr" path="res://scripts/window.gd" id="5_g14j6"]
+[ext_resource type="Texture2D" uid="uid://whn2knfhmikb" path="res://img/pc/win.png" id="5_ykrsh"]
+
+[sub_resource type="RectangleShape2D" id="RectangleShape2D_8uh7m"]
+size = Vector2(110, 125)
+
+[sub_resource type="RectangleShape2D" id="RectangleShape2D_g14j6"]
+size = Vector2(586, 367)
+
+[node name="Main" type="Node2D"]
+
+[node name="Wallpaper" type="Sprite2D" parent="."]
+position = Vector2(576, 324.00003)
+scale = Vector2(0.59999996, 0.54)
+texture = ExtResource("1_37kl0")
+
+[node name="Notepad_Icon" type="Area2D" parent="."]
+script = ExtResource("2_6uqi0")
+
+[node name="Notepad" type="Sprite2D" parent="Notepad_Icon"]
+position = Vector2(104, 84)
+texture = ExtResource("2_8uh7m")
+
+[node name="Label" type="Label" parent="Notepad_Icon"]
+offset_left = 61.0
+offset_top = 133.0
+offset_right = 129.0
+offset_bottom = 156.0
+text = "Notepad"
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="Notepad_Icon"]
+position = Vector2(100, 95.5)
+shape = SubResource("RectangleShape2D_8uh7m")
+
+[node name="Folder_Icon" type="Area2D" parent="."]
+script = ExtResource("2_6uqi0")
+
+[node name="Folder" type="Sprite2D" parent="Folder_Icon"]
+position = Vector2(105, 289)
+texture = ExtResource("4_ppyta")
+
+[node name="Label" type="Label" parent="Folder_Icon"]
+offset_left = 68.0
+offset_top = 328.0
+offset_right = 136.0
+offset_bottom = 351.0
+text = "Folder"
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="Folder_Icon"]
+position = Vector2(100, 294)
+shape = SubResource("RectangleShape2D_8uh7m")
+
+[node name="Notepad" type="Area2D" parent="."]
+script = ExtResource("5_g14j6")
+
+[node name="Window" type="Sprite2D" parent="Notepad"]
+position = Vector2(767.00006, 357)
+scale = Vector2(12.219999, 8)
+texture = ExtResource("5_ykrsh")
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="Notepad"]
+position = Vector2(767, 356)
+shape = SubResource("RectangleShape2D_g14j6")
+
+[node name="TextEdit" type="TextEdit" parent="Notepad"]
+offset_left = 475.0
+offset_top = 173.0
+offset_right = 1060.0
+offset_bottom = 544.0
+backspace_deletes_composite_character_enabled = true
+wrap_mode = 1
+caret_blink = true
+
+[connection signal="open_app" from="Notepad_Icon" to="Notepad" method="_on_notepad_icon_open_app"]