added some more assets
This commit is contained in:
parent
bfc06c7919
commit
11112bf781
16 changed files with 234 additions and 10 deletions
|
@ -1,14 +1,21 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://ba6afuig8bqrg"]
|
||||
[gd_scene load_steps=10 format=3 uid="uid://ba6afuig8bqrg"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://snxpqx0ony7s" path="res://objects/Player.tscn" id="1_prjlb"]
|
||||
[ext_resource type="PackedScene" uid="uid://dii1q3f5dj72y" path="res://objects/CRT.tscn" id="2_mxtem"]
|
||||
[ext_resource type="Texture2D" uid="uid://cw3onignoce3e" path="res://temp_assets/scale_up.png" id="3_7s458"]
|
||||
[ext_resource type="Texture2D" uid="uid://ckr5hxaqp6s5x" path="res://temp_assets/scale_up_hovered.png" id="4_6s82a"]
|
||||
[ext_resource type="Texture2D" uid="uid://btmck3gpinxo1" path="res://temp_assets/scaled_down.png" id="5_8tyx1"]
|
||||
[ext_resource type="Texture2D" uid="uid://c02aqv5sgwvgn" path="res://temp_assets/scale_down_hovered.png" id="6_kdplq"]
|
||||
[ext_resource type="Texture2D" uid="uid://2rfdls8oduj1" path="res://temp_assets/mirror.png" id="7_xwthi"]
|
||||
[ext_resource type="Texture2D" uid="uid://bfpwj3kaxe1ka" path="res://temp_assets/mirror_hovered.png" id="8_r6dd1"]
|
||||
|
||||
[sub_resource type="Theme" id="Theme_efdhj"]
|
||||
|
||||
[node name="LevelBase" type="Node"]
|
||||
|
||||
[node name="Player" parent="." instance=ExtResource("1_prjlb")]
|
||||
|
||||
[node name="CanvasLayer" parent="." instance=ExtResource("2_mxtem")]
|
||||
visible = false
|
||||
|
||||
[node name="UILayer" type="CanvasLayer" parent="."]
|
||||
|
||||
|
@ -25,18 +32,29 @@ layout_mode = 0
|
|||
offset_right = 40.0
|
||||
offset_bottom = 40.0
|
||||
|
||||
[node name="ScaleUp" type="Button" parent="UILayer/UI/HBoxContainer"]
|
||||
[node name="ScaleUp" type="TextureButton" parent="UILayer/UI/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
text = "Scale up
|
||||
"
|
||||
theme = SubResource("Theme_efdhj")
|
||||
texture_normal = ExtResource("3_7s458")
|
||||
texture_pressed = ExtResource("4_6s82a")
|
||||
texture_hover = ExtResource("4_6s82a")
|
||||
texture_disabled = ExtResource("3_7s458")
|
||||
texture_focused = ExtResource("4_6s82a")
|
||||
|
||||
[node name="ScaleDown" type="Button" parent="UILayer/UI/HBoxContainer"]
|
||||
[node name="ScaleDown" type="TextureButton" parent="UILayer/UI/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
text = "Scale down
|
||||
"
|
||||
texture_normal = ExtResource("5_8tyx1")
|
||||
texture_pressed = ExtResource("6_kdplq")
|
||||
texture_hover = ExtResource("6_kdplq")
|
||||
texture_disabled = ExtResource("5_8tyx1")
|
||||
texture_focused = ExtResource("6_kdplq")
|
||||
|
||||
[node name="Mirror" type="Button" parent="UILayer/UI/HBoxContainer"]
|
||||
[node name="TextureButton" type="TextureButton" parent="UILayer/UI/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
text = "Mirror"
|
||||
texture_normal = ExtResource("7_xwthi")
|
||||
texture_pressed = ExtResource("8_r6dd1")
|
||||
texture_hover = ExtResource("8_r6dd1")
|
||||
texture_disabled = ExtResource("7_xwthi")
|
||||
texture_focused = ExtResource("8_r6dd1")
|
||||
|
||||
[node name="Camera2D" type="Camera2D" parent="."]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue