added some more assets

This commit is contained in:
Booklordofthedings 2024-08-17 01:19:19 +02:00
parent bfc06c7919
commit 11112bf781
16 changed files with 234 additions and 10 deletions

BIN
assets/icons.kra Normal file

Binary file not shown.

BIN
assets/icons.kra~ Normal file

Binary file not shown.

View file

@ -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="."]

View file

@ -42,6 +42,8 @@ player_jump={
[rendering]
textures/canvas_textures/default_texture_filter=0
renderer/rendering_method="gl_compatibility"
renderer/rendering_method.mobile="gl_compatibility"
environment/defaults/default_clear_color=Color(0.785573, 0.700355, 0.83902, 1)
2d/snap/snap_2d_transforms_to_pixel=true

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://2rfdls8oduj1"
path="res://.godot/imported/mirror.png-8323ac08430b69a1455e8f58bedfc150.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://temp_assets/mirror.png"
dest_files=["res://.godot/imported/mirror.png-8323ac08430b69a1455e8f58bedfc150.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bfpwj3kaxe1ka"
path="res://.godot/imported/mirror_hovered.png-fa2419b22d10d99c5187ca2e8ecc3d42.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://temp_assets/mirror_hovered.png"
dest_files=["res://.godot/imported/mirror_hovered.png-fa2419b22d10d99c5187ca2e8ecc3d42.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c02aqv5sgwvgn"
path="res://.godot/imported/scale_down_hovered.png-0778febf7416ccd7c8ca97bc8f162cb4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://temp_assets/scale_down_hovered.png"
dest_files=["res://.godot/imported/scale_down_hovered.png-0778febf7416ccd7c8ca97bc8f162cb4.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cw3onignoce3e"
path="res://.godot/imported/scale_up.png-c50833ff329efc91c6234f8910a0feaa.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://temp_assets/scale_up.png"
dest_files=["res://.godot/imported/scale_up.png-c50833ff329efc91c6234f8910a0feaa.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ckr5hxaqp6s5x"
path="res://.godot/imported/scale_up_hovered.png-090bafae05a1ad3ed19d5bd535718527.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://temp_assets/scale_up_hovered.png"
dest_files=["res://.godot/imported/scale_up_hovered.png-090bafae05a1ad3ed19d5bd535718527.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://btmck3gpinxo1"
path="res://.godot/imported/scaled_down.png-212f7a95b9c138667b8d044aa8656802.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://temp_assets/scaled_down.png"
dest_files=["res://.godot/imported/scaled_down.png-212f7a95b9c138667b8d044aa8656802.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1