diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2025-03-10 18:22:09 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2025-03-10 18:22:09 +0100 |
commit | 440020e642f539079867577435a9f8b02075699b (patch) | |
tree | 99acccfc1574a8ffc656d6f64ff934949edb1f52 /start.tscn |
Diffstat (limited to 'start.tscn')
-rw-r--r-- | start.tscn | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/start.tscn b/start.tscn new file mode 100644 index 0000000..9251454 --- /dev/null +++ b/start.tscn @@ -0,0 +1,64 @@ +[gd_scene load_steps=5 format=3 uid="uid://d1jslq40imenb"] + +[ext_resource type="Script" uid="uid://ckonh5y0brewm" path="res://start.gd" id="1_ots34"] +[ext_resource type="Texture2D" uid="uid://j71cc2olvhk1" path="res://logo.png" id="2_qn1rc"] +[ext_resource type="Texture2D" uid="uid://cowq84cvepbp7" path="res://player/assets/player-portait.png" id="3_1n0d2"] +[ext_resource type="Theme" uid="uid://cxbeeg4rqqeub" path="res://ui/assets/theme.tres" id="4_y5hus"] + +[node name="Start" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_ots34") + +[node name="Background" type="ColorRect" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0.964706, 0.964706, 0.964706, 1) + +[node name="Logo" type="TextureRect" parent="."] +layout_mode = 1 +anchors_preset = -1 +anchor_right = 1.0 +offset_left = 115.5 +offset_top = 11.5 +offset_right = -115.5 +offset_bottom = 100.5 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("2_qn1rc") +stretch_mode = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="."] +layout_mode = 0 +offset_left = 71.0 +offset_top = 124.0 +offset_right = 253.0 +offset_bottom = 227.0 + +[node name="Player" type="TextureRect" parent="HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +texture = ExtResource("3_1n0d2") +stretch_mode = 5 + +[node name="Pokemon" type="TextureRect" parent="HBoxContainer"] +custom_minimum_size = Vector2(80, 0) +layout_mode = 2 +stretch_mode = 5 + +[node name="PressStart" type="Label" parent="."] +layout_mode = 0 +offset_left = 119.0 +offset_top = 113.0 +offset_right = 201.0 +offset_bottom = 127.0 +theme = ExtResource("4_y5hus") +text = "Press Start" |