blob: 425adef0bc63d9e38ff5765f4ad35824871830fc (
plain)
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
|
[gd_scene load_steps=7 format=3 uid="uid://by18nc16h76y0"]
[ext_resource type="Texture2D" uid="uid://c6ed1ks2h58s7" path="res://UI-Background-Colour.png" id="1_1j58d"]
[ext_resource type="Texture2D" uid="uid://dcsaf0afsn76" path="res://BuyButton.png" id="2_8qhml"]
[ext_resource type="Texture2D" uid="uid://ckd5ppryxuuum" path="res://BuyButtonPressed.png" id="3_4kqfi"]
[ext_resource type="Script" path="res://buy_button.gd" id="4_lfir0"]
[ext_resource type="Texture2D" uid="uid://du8xy83ve1lm7" path="res://SellButton.png" id="5_salj8"]
[ext_resource type="Texture2D" uid="uid://qgsvhv16ghwf" path="res://SellButtonPressed.png" id="6_ifhss"]
[node name="Node2D" type="Node2D"]
[node name="Background" type="Sprite2D" parent="."]
modulate = Color(0.796078, 0.796078, 0.796078, 1)
position = Vector2(576.25, 323.75)
scale = Vector2(1153.5, 648.5)
texture = ExtResource("1_1j58d")
[node name="BuyButton" type="TextureButton" parent="."]
offset_left = 168.0
offset_top = 450.0
offset_right = 523.0
offset_bottom = 579.0
texture_normal = ExtResource("2_8qhml")
texture_pressed = ExtResource("3_4kqfi")
script = ExtResource("4_lfir0")
[node name="TextureButton" type="TextureButton" parent="."]
offset_left = 649.0
offset_top = 450.0
offset_right = 1004.0
offset_bottom = 579.0
texture_normal = ExtResource("5_salj8")
texture_pressed = ExtResource("6_ifhss")
|