pathfinding rework for now
6
UI/AchievementPopup/achievement_popup.gd
Normal file
@ -0,0 +1,6 @@
|
||||
class_name AchievementPopup extends PanelContainer
|
||||
|
||||
|
||||
func set_achievement(text: String, sprite: Texture) -> void:
|
||||
$HBoxContainer/Label.text = text
|
||||
$HBoxContainer/TextureRect.texture = sprite
|
1
UI/AchievementPopup/achievement_popup.gd.uid
Normal file
@ -0,0 +1 @@
|
||||
uid://3n5mrdgjsn8e
|
39
UI/AchievementPopup/achievement_popup.tscn
Normal file
@ -0,0 +1,39 @@
|
||||
[gd_scene load_steps=4 format=3 uid="uid://cmn22yceqewx1"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://3n5mrdgjsn8e" path="res://UI/AchievementPopup/achievement_popup.gd" id="1_ah4h2"]
|
||||
[ext_resource type="Texture2D" uid="uid://ctbi3gm1me1t5" path="res://Assets/Textures/unlock_mage_achievement.png" id="2_nbrip"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_um1rr"]
|
||||
atlas = ExtResource("2_nbrip")
|
||||
region = Rect2(36, 0, 36, 36)
|
||||
|
||||
[node name="AchievementPopup" type="PanelContainer"]
|
||||
anchors_preset = 6
|
||||
anchor_left = 1.0
|
||||
anchor_top = 0.5
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 0.5
|
||||
offset_left = -483.0
|
||||
offset_top = -61.5
|
||||
offset_bottom = 61.5
|
||||
grow_horizontal = 0
|
||||
grow_vertical = 2
|
||||
script = ExtResource("1_ah4h2")
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
alignment = 2
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="HBoxContainer"]
|
||||
layout_mode = 2
|
||||
texture = SubResource("AtlasTexture_um1rr")
|
||||
expand_mode = 3
|
||||
stretch_mode = 5
|
||||
|
||||
[node name="Label" type="Label" parent="HBoxContainer"]
|
||||
custom_minimum_size = Vector2(350, 0)
|
||||
layout_mode = 2
|
||||
text = "unlock the thing and then go to the place to do the other thing"
|
||||
horizontal_alignment = 1
|
||||
vertical_alignment = 1
|
||||
autowrap_mode = 3
|
22
UI/EnemyCard/enemy_card_ui.gd
Normal file
@ -0,0 +1,22 @@
|
||||
class_name EnemyCardUI extends Control
|
||||
|
||||
@export var enemy_name: Label
|
||||
@export var enemy_rarity: TextureRect
|
||||
@export var enemy_tex: TextureRect
|
||||
@export var enemy_count: Label
|
||||
|
||||
|
||||
func set_enemy(enemy: EnemyCard) -> void:
|
||||
enemy_name.text = enemy.enemy.title
|
||||
enemy_rarity.texture.region = Rect2(0.0, 92.0 - (23.0 * int(enemy.rarity)), 124.0, 23.0)
|
||||
enemy_tex.texture = enemy.enemy.icon
|
||||
if enemy.rarity == Data.Rarity.COMMON:
|
||||
enemy_count.text = str(enemy.enemy.common_group)
|
||||
elif enemy.rarity == Data.Rarity.UNCOMMON:
|
||||
enemy_count.text = str(enemy.enemy.uncommon_group)
|
||||
elif enemy.rarity == Data.Rarity.RARE:
|
||||
enemy_count.text = str(enemy.enemy.rare_group)
|
||||
elif enemy.rarity == Data.Rarity.EPIC:
|
||||
enemy_count.text = str(enemy.enemy.epic_group)
|
||||
elif enemy.rarity == Data.Rarity.LEGENDARY:
|
||||
enemy_count.text = str(enemy.enemy.legendary_group)
|
1
UI/EnemyCard/enemy_card_ui.gd.uid
Normal file
@ -0,0 +1 @@
|
||||
uid://b8j7mw1xwisi
|
76
UI/EnemyCard/enemy_card_ui.tscn
Normal file
@ -0,0 +1,76 @@
|
||||
[gd_scene load_steps=6 format=3 uid="uid://d17c77pqsi8oy"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b8j7mw1xwisi" path="res://UI/EnemyCard/enemy_card_ui.gd" id="1_i1ei4"]
|
||||
[ext_resource type="Texture2D" uid="uid://g00wwrlxxdc5" path="res://Assets/Textures/icon_eye_dog.png" id="2_3r04h"]
|
||||
[ext_resource type="Texture2D" uid="uid://c7tnda7he8u5l" path="res://Assets/Textures/stars_legendary-Sheet.png" id="3_uu1bb"]
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uu1bb"]
|
||||
bg_color = Color(0.691357, 0.691357, 0.691357, 1)
|
||||
corner_radius_top_left = 15
|
||||
corner_radius_top_right = 15
|
||||
corner_radius_bottom_right = 15
|
||||
corner_radius_bottom_left = 15
|
||||
expand_margin_left = 5.0
|
||||
expand_margin_top = 5.0
|
||||
expand_margin_right = 5.0
|
||||
expand_margin_bottom = 5.0
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_4b8gd"]
|
||||
resource_local_to_scene = true
|
||||
atlas = ExtResource("3_uu1bb")
|
||||
region = Rect2(0, 0, 124, 23)
|
||||
|
||||
[node name="EnemyCardUI" type="Control" node_paths=PackedStringArray("enemy_name", "enemy_rarity", "enemy_tex", "enemy_count")]
|
||||
layout_mode = 3
|
||||
anchors_preset = 0
|
||||
mouse_filter = 2
|
||||
script = ExtResource("1_i1ei4")
|
||||
enemy_name = NodePath("PanelContainer/HBoxContainer/EnemyName")
|
||||
enemy_rarity = NodePath("PanelContainer/HBoxContainer/HBoxContainer/TextureRect")
|
||||
enemy_tex = NodePath("PanelContainer/HBoxContainer/TextureRect")
|
||||
enemy_count = NodePath("PanelContainer/HBoxContainer/HBoxContainer/Amount")
|
||||
|
||||
[node name="PanelContainer" type="PanelContainer" parent="."]
|
||||
custom_minimum_size = Vector2(0, 300)
|
||||
layout_mode = 0
|
||||
offset_right = 241.0
|
||||
offset_bottom = 138.0
|
||||
mouse_filter = 2
|
||||
theme_override_styles/panel = SubResource("StyleBoxFlat_uu1bb")
|
||||
|
||||
[node name="HBoxContainer" type="VBoxContainer" parent="PanelContainer"]
|
||||
layout_mode = 2
|
||||
mouse_filter = 2
|
||||
|
||||
[node name="EnemyName" type="Label" parent="PanelContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 0
|
||||
theme_override_colors/font_color = Color(0, 0, 0, 1)
|
||||
text = "enemy name"
|
||||
horizontal_alignment = 1
|
||||
vertical_alignment = 1
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="PanelContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 3
|
||||
mouse_filter = 2
|
||||
texture = ExtResource("2_3r04h")
|
||||
expand_mode = 1
|
||||
stretch_mode = 5
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 8
|
||||
|
||||
[node name="Amount" type="Label" parent="PanelContainer/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
theme_override_colors/font_color = Color(0, 0, 0, 1)
|
||||
text = "15"
|
||||
horizontal_alignment = 1
|
||||
vertical_alignment = 1
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="PanelContainer/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
texture = SubResource("AtlasTexture_4b8gd")
|
||||
stretch_mode = 5
|
BIN
UI/Keybinding/KennyControllerPrompts/Mouse/mouse_left.png
Normal file
After ![]() (image error) Size: 728 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://gw2x6bjgny3d"
|
||||
path="res://.godot/imported/mouse_left.png-b48f6f60f28824c34a34f4180779783c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Mouse/mouse_left.png"
|
||||
dest_files=["res://.godot/imported/mouse_left.png-b48f6f60f28824c34a34f4180779783c.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Mouse/mouse_move.png
Normal file
After ![]() (image error) Size: 759 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c2e1jacw7iua6"
|
||||
path="res://.godot/imported/mouse_move.png-27928c84bcd1ec79fda24626a793e774.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Mouse/mouse_move.png"
|
||||
dest_files=["res://.godot/imported/mouse_move.png-27928c84bcd1ec79fda24626a793e774.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Mouse/mouse_right.png
Normal file
After ![]() (image error) Size: 725 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cqligs870jt1d"
|
||||
path="res://.godot/imported/mouse_right.png-5b7bb56baa9fc3692e1582c22a7a93f4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Mouse/mouse_right.png"
|
||||
dest_files=["res://.godot/imported/mouse_right.png-5b7bb56baa9fc3692e1582c22a7a93f4.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Mouse/mouse_scroll.png
Normal file
After ![]() (image error) Size: 729 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://rld32ncrja3n"
|
||||
path="res://.godot/imported/mouse_scroll.png-4107595d3b2c5a1eb737e4483b42c82a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Mouse/mouse_scroll.png"
|
||||
dest_files=["res://.godot/imported/mouse_scroll.png-4107595d3b2c5a1eb737e4483b42c82a.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Mouse/mouse_scroll_down.png
Normal file
After ![]() (image error) Size: 886 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://vw0gvl8o6f0f"
|
||||
path="res://.godot/imported/mouse_scroll_down.png-647b3feb13a12061c2f31c88e8581095.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Mouse/mouse_scroll_down.png"
|
||||
dest_files=["res://.godot/imported/mouse_scroll_down.png-647b3feb13a12061c2f31c88e8581095.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Mouse/mouse_scroll_up.png
Normal file
After ![]() (image error) Size: 835 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cffbts12medma"
|
||||
path="res://.godot/imported/mouse_scroll_up.png-6de22fae8c2e8991aa3addb70e9aac7f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Mouse/mouse_scroll_up.png"
|
||||
dest_files=["res://.godot/imported/mouse_scroll_up.png-6de22fae8c2e8991aa3addb70e9aac7f.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
|
After ![]() (image error) Size: 758 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d1vucmrj7o7l0"
|
||||
path="res://.godot/imported/controller_playstation1.png-4567028de53ec7556a4fcfb6da8081e8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/controller_playstation1.png"
|
||||
dest_files=["res://.godot/imported/controller_playstation1.png-4567028de53ec7556a4fcfb6da8081e8.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
|
After ![]() (image error) Size: 854 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://nmgksrl4b4de"
|
||||
path="res://.godot/imported/controller_playstation2.png-f8a20d02e2b0d6f11456755cdeac4b29.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/controller_playstation2.png"
|
||||
dest_files=["res://.godot/imported/controller_playstation2.png-f8a20d02e2b0d6f11456755cdeac4b29.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
|
After ![]() (image error) Size: 878 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dw30dofej6n6h"
|
||||
path="res://.godot/imported/controller_playstation3.png-4932d53a58b5303b82d3ceca8653c65d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/controller_playstation3.png"
|
||||
dest_files=["res://.godot/imported/controller_playstation3.png-4932d53a58b5303b82d3ceca8653c65d.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
|
After ![]() (image error) Size: 826 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bpkhvc32ecdgi"
|
||||
path="res://.godot/imported/controller_playstation4.png-740a8b543d042b3151cd6d1f7fc831e9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/controller_playstation4.png"
|
||||
dest_files=["res://.godot/imported/controller_playstation4.png-740a8b543d042b3151cd6d1f7fc831e9.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
|
After ![]() (image error) Size: 903 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b1fnt5tg6d41t"
|
||||
path="res://.godot/imported/controller_playstation5.png-7d2e6cd8c5cd28ab315e32430ec5b4ae.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/controller_playstation5.png"
|
||||
dest_files=["res://.godot/imported/controller_playstation5.png-7d2e6cd8c5cd28ab315e32430ec5b4ae.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
|
After ![]() (image error) Size: 577 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_select.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bit4mxpulgo06"
|
||||
path="res://.godot/imported/playstation3_button_select.png-dafd5c2ad6ff381a310bb8692b6b90a7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_select.png"
|
||||
dest_files=["res://.godot/imported/playstation3_button_select.png-dafd5c2ad6ff381a310bb8692b6b90a7.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_select_outline.png
Normal file
After ![]() (image error) Size: 584 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_select_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dskyoab2c18h6"
|
||||
path="res://.godot/imported/playstation3_button_select_outline.png-d1f257bdfd322eaff17286135399ac10.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_select_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation3_button_select_outline.png-d1f257bdfd322eaff17286135399ac10.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
|
After ![]() (image error) Size: 697 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_start.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bomrr26pr0wrj"
|
||||
path="res://.godot/imported/playstation3_button_start.png-75643acbcc854d2d296e79bcb676559b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_start.png"
|
||||
dest_files=["res://.godot/imported/playstation3_button_start.png-75643acbcc854d2d296e79bcb676559b.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_start_outline.png
Normal file
After ![]() (image error) Size: 756 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_start_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b8f7mbl5nadpw"
|
||||
path="res://.godot/imported/playstation3_button_start_outline.png-39c6a6b420e28e1976e2a8c221689411.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation3_button_start_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation3_button_start_outline.png-39c6a6b420e28e1976e2a8c221689411.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
|
After ![]() (image error) Size: 753 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_options.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cne8s1llds8q1"
|
||||
path="res://.godot/imported/playstation4_button_options.png-ef23d23a1ebb5052507a942c39613589.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_options.png"
|
||||
dest_files=["res://.godot/imported/playstation4_button_options.png-ef23d23a1ebb5052507a942c39613589.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_options_outline.png
Normal file
After ![]() (image error) Size: 821 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_options_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dlomgvg2qtf50"
|
||||
path="res://.godot/imported/playstation4_button_options_outline.png-ce62c30efef4e146f40203743d0f4941.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_options_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation4_button_options_outline.png-ce62c30efef4e146f40203743d0f4941.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
|
After ![]() (image error) Size: 696 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_share.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ceo1dqo37ppto"
|
||||
path="res://.godot/imported/playstation4_button_share.png-dcf378ed6176dad7cb3272d043bf78d6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_share.png"
|
||||
dest_files=["res://.godot/imported/playstation4_button_share.png-dcf378ed6176dad7cb3272d043bf78d6.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_share_outline.png
Normal file
After ![]() (image error) Size: 766 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_share_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://gad32f3fc13s"
|
||||
path="res://.godot/imported/playstation4_button_share_outline.png-74c0bc50c867e3595149781df22c38fe.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_button_share_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation4_button_share_outline.png-74c0bc50c867e3595149781df22c38fe.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
|
After ![]() (image error) Size: 441 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cqmhkca847ly4"
|
||||
path="res://.godot/imported/playstation4_touchpad.png-65fc830a5da94dd32da8ee8c6e0bf9c0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad.png-65fc830a5da94dd32da8ee8c6e0bf9c0.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
|
After ![]() (image error) Size: 520 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c6l3mhsydbfoi"
|
||||
path="res://.godot/imported/playstation4_touchpad_outline.png-49f36d7c0e501991abfd1895b217f2c3.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_outline.png-49f36d7c0e501991abfd1895b217f2c3.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
|
After ![]() (image error) Size: 634 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://2tuu508nljfh"
|
||||
path="res://.godot/imported/playstation4_touchpad_press.png-4907e8be7eb2ea0b6dd5073e7cfdb590.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_press.png-4907e8be7eb2ea0b6dd5073e7cfdb590.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press_center.png
Normal file
After ![]() (image error) Size: 728 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press_center.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dl4pwftgose28"
|
||||
path="res://.godot/imported/playstation4_touchpad_press_center.png-c72fb4ab7c45e761cb22e8201ed67d17.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press_center.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_press_center.png-c72fb4ab7c45e761cb22e8201ed67d17.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press_left.png
Normal file
After ![]() (image error) Size: 674 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press_left.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c3qxlqck77i03"
|
||||
path="res://.godot/imported/playstation4_touchpad_press_left.png-78788cb96de2969bece841e447e706d0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press_left.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_press_left.png-78788cb96de2969bece841e447e706d0.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press_right.png
Normal file
After ![]() (image error) Size: 679 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press_right.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ms3ne0fkvtl7"
|
||||
path="res://.godot/imported/playstation4_touchpad_press_right.png-5fdafb0c432b88ac7708eeeea5178b34.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_press_right.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_press_right.png-5fdafb0c432b88ac7708eeeea5178b34.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
|
After ![]() (image error) Size: 477 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_selected.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cj1kjjisr8hh4"
|
||||
path="res://.godot/imported/playstation4_touchpad_selected.png-8f15fc81bbea0b2ed4a273ab7464dd68.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_selected.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_selected.png-8f15fc81bbea0b2ed4a273ab7464dd68.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_down.png
Normal file
After ![]() (image error) Size: 826 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_down.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c5yjf64o74l1m"
|
||||
path="res://.godot/imported/playstation4_touchpad_swipe_down.png-32b6ae8c985a5b5613ed545807719f8c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_down.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_swipe_down.png-32b6ae8c985a5b5613ed545807719f8c.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_horizontal.png
Normal file
After ![]() (image error) Size: 876 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_horizontal.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://brp6iqm3ia52s"
|
||||
path="res://.godot/imported/playstation4_touchpad_swipe_horizontal.png-e484a99eaed4caf893f0d228a90987b5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_horizontal.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_swipe_horizontal.png-e484a99eaed4caf893f0d228a90987b5.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_left.png
Normal file
After ![]() (image error) Size: 806 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_left.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://brs16gvcooac7"
|
||||
path="res://.godot/imported/playstation4_touchpad_swipe_left.png-10737c9416df13c593623f99c417f3f8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_left.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_swipe_left.png-10737c9416df13c593623f99c417f3f8.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_right.png
Normal file
After ![]() (image error) Size: 802 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_right.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://btwqkv4ffjoeu"
|
||||
path="res://.godot/imported/playstation4_touchpad_swipe_right.png-1ff208e3b2775ac8268735fcfe05955a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_right.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_swipe_right.png-1ff208e3b2775ac8268735fcfe05955a.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
|
After ![]() (image error) Size: 806 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_up.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cmevnpepf4mj4"
|
||||
path="res://.godot/imported/playstation4_touchpad_swipe_up.png-31c55e703b105b099f1991fd9f5e3dc2.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_up.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_swipe_up.png-31c55e703b105b099f1991fd9f5e3dc2.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_vertical.png
Normal file
After ![]() (image error) Size: 875 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_vertical.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dc0debynhq26o"
|
||||
path="res://.godot/imported/playstation4_touchpad_swipe_vertical.png-ca5c9449b4ce150e8c0ba8f37d4cb91c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_swipe_vertical.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_swipe_vertical.png-ca5c9449b4ce150e8c0ba8f37d4cb91c.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
|
After ![]() (image error) Size: 816 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_touch.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bipmr3jqydlk0"
|
||||
path="res://.godot/imported/playstation4_touchpad_touch.png-45aba106cefdeb6154edfac33d08f69e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_touch.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_touch.png-45aba106cefdeb6154edfac33d08f69e.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_touch_outline.png
Normal file
After ![]() (image error) Size: 788 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_touch_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://xqp2sgm77mag"
|
||||
path="res://.godot/imported/playstation4_touchpad_touch_outline.png-b1696f969ed91128218de53552ed68ff.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation4_touchpad_touch_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation4_touchpad_touch_outline.png-b1696f969ed91128218de53552ed68ff.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
|
After ![]() (image error) Size: 617 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://y7rurkkg1vfk"
|
||||
path="res://.godot/imported/playstation5_button_create.png-d0d606f7b46b675aa2aa8edc8364808d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_create.png-d0d606f7b46b675aa2aa8edc8364808d.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create_alternative.png
Normal file
After ![]() (image error) Size: 533 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create_alternative.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dntejsvk2h12a"
|
||||
path="res://.godot/imported/playstation5_button_create_alternative.png-68672e6aaee861ef027039aeed80baa5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create_alternative.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_create_alternative.png-68672e6aaee861ef027039aeed80baa5.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create_alternative_outline.png
Normal file
After ![]() (image error) Size: 705 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create_alternative_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c8woy2d2mk2h2"
|
||||
path="res://.godot/imported/playstation5_button_create_alternative_outline.png-4b2a0ae2f82ac99db8337a72db4a673d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create_alternative_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_create_alternative_outline.png-4b2a0ae2f82ac99db8337a72db4a673d.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create_outline.png
Normal file
After ![]() (image error) Size: 770 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://desbt3wi1rrsm"
|
||||
path="res://.godot/imported/playstation5_button_create_outline.png-747521ab3922ec1791f68328120fe50b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_create_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_create_outline.png-747521ab3922ec1791f68328120fe50b.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
|
After ![]() (image error) Size: 567 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cyslab7gie2ux"
|
||||
path="res://.godot/imported/playstation5_button_mute.png-45a1271c01c7f5fa1845c83a7f1cd451.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_mute.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_mute.png-45a1271c01c7f5fa1845c83a7f1cd451.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_mute_outline.png
Normal file
After ![]() (image error) Size: 649 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_mute_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cgqt7nn6ku56l"
|
||||
path="res://.godot/imported/playstation5_button_mute_outline.png-3bda62016c90261db5a54f43d707d7bf.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_mute_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_mute_outline.png-3bda62016c90261db5a54f43d707d7bf.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
|
After ![]() (image error) Size: 500 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dorykyo06ah7k"
|
||||
path="res://.godot/imported/playstation5_button_options.png-b4eb2b82320fd0fd176ba05a746d963b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_options.png-b4eb2b82320fd0fd176ba05a746d963b.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options_alternative.png
Normal file
After ![]() (image error) Size: 535 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options_alternative.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://qyivx48tutro"
|
||||
path="res://.godot/imported/playstation5_button_options_alternative.png-3dff51c0ce4bec31e8140c182800881d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options_alternative.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_options_alternative.png-3dff51c0ce4bec31e8140c182800881d.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options_alternative_outline.png
Normal file
After ![]() (image error) Size: 698 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options_alternative_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ckgms30n2fdu6"
|
||||
path="res://.godot/imported/playstation5_button_options_alternative_outline.png-5ee6d123d8f26f0708eb07c7bafd7e91.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options_alternative_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_options_alternative_outline.png-5ee6d123d8f26f0708eb07c7bafd7e91.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options_outline.png
Normal file
After ![]() (image error) Size: 644 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cibyq5507y2na"
|
||||
path="res://.godot/imported/playstation5_button_options_outline.png-88ac901d16faed0644a155f3dc7ca1b1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_button_options_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation5_button_options_outline.png-88ac901d16faed0644a155f3dc7ca1b1.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
|
After ![]() (image error) Size: 671 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cddy4juqvof4j"
|
||||
path="res://.godot/imported/playstation5_elite_fn_l.png-a567ce1586ed2aa0f1ce3ecdf7be0c70.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_elite_fn_l.png"
|
||||
dest_files=["res://.godot/imported/playstation5_elite_fn_l.png-a567ce1586ed2aa0f1ce3ecdf7be0c70.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
|
BIN
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_elite_fn_l_outline.png
Normal file
After ![]() (image error) Size: 869 B |
34
UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_elite_fn_l_outline.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bs7mvuyp45de"
|
||||
path="res://.godot/imported/playstation5_elite_fn_l_outline.png-421ff03f0d9b0b29d7aeda343d3dd8c1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_elite_fn_l_outline.png"
|
||||
dest_files=["res://.godot/imported/playstation5_elite_fn_l_outline.png-421ff03f0d9b0b29d7aeda343d3dd8c1.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
|
After ![]() (image error) Size: 748 B |
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://wcbe2rtvo8cu"
|
||||
path="res://.godot/imported/playstation5_elite_fn_r.png-1582064b5aceffb422feecd96090db3e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://UI/Keybinding/KennyControllerPrompts/Playstation/playstation5_elite_fn_r.png"
|
||||
dest_files=["res://.godot/imported/playstation5_elite_fn_r.png-1582064b5aceffb422feecd96090db3e.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
|