commit 6fc715b97e3653c5bb038fa3b809bee2087d675f Author: TsubakiLoL <2789646812@qq.com> Date: Tue Dec 17 18:21:12 2024 +0800 add diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8ad74f7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0af181c --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Godot 4+ specific ignores +.godot/ +/android/ diff --git a/Modules/ButtonItem.gd b/Modules/ButtonItem.gd new file mode 100644 index 0000000..d7e8fa7 --- /dev/null +++ b/Modules/ButtonItem.gd @@ -0,0 +1,23 @@ +extends BaseControl + + +@export var TextureNormal:Texture2D + +@export var TextureSelected:Texture2D + + + +var is_select:bool=false: + set(value): + if value: + $TextureRect.texture=TextureSelected + else: + $TextureRect.texture=TextureNormal + is_select=value +func _ready() -> void: + super._ready() + self.pressed.connect(click) + self.focus_mode=Control.FOCUS_NONE + +func click(): + is_select=!is_select diff --git a/Modules/LanguageButton.tscn b/Modules/LanguageButton.tscn new file mode 100644 index 0000000..b4fac9f --- /dev/null +++ b/Modules/LanguageButton.tscn @@ -0,0 +1,67 @@ +[gd_scene load_steps=6 format=3 uid="uid://bb8i20x4xutp5"] + +[ext_resource type="Script" path="res://Modules/language_button.gd" id="1_hpoca"] +[ext_resource type="Texture2D" uid="uid://c6c0dhw65i2cf" path="res://res/button/button_language_default.png" id="2_w5oxn"] +[ext_resource type="Texture2D" uid="uid://bwxv6h6r67ngd" path="res://res/icon/icon_Chinese_default.png" id="3_4q7uh"] +[ext_resource type="Texture2D" uid="uid://uquuc78pyxme" path="res://res/button/button_language_hover.png" id="3_ltm75"] +[ext_resource type="Texture2D" uid="uid://dmftxg485krwg" path="res://res/icon/icon_Chinese_hover.png" id="5_l7776"] + +[node name="Button" type="Button"] +custom_minimum_size = Vector2(588, 127) +anchors_preset = -1 +anchor_right = 0.153125 +anchor_bottom = 0.117593 +offset_right = -580.0 +offset_bottom = -119.0 +focus_mode = 0 +flat = true +script = ExtResource("1_hpoca") +BackTextureNormal = ExtResource("2_w5oxn") +BackTextureSelected = ExtResource("3_ltm75") +IconTextureNormal = ExtResource("3_4q7uh") +IconTextureSelected = ExtResource("5_l7776") +TextColorSelected = Color(1, 1, 1, 1) +Text = "中文" +metadata/_edit_use_anchors_ = true + +[node name="back" type="TextureRect" parent="."] +unique_name_in_owner = true +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("2_w5oxn") + +[node name="MarginContainer" type="MarginContainer" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_top = 20 +theme_override_constants/margin_bottom = 20 + +[node name="text" type="Label" parent="MarginContainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_stretch_ratio = 2.95 +theme_override_colors/font_color = Color(0, 0, 0, 1) +theme_override_font_sizes/font_size = 44 +text = "中文" +horizontal_alignment = 1 + +[node name="icon" type="TextureRect" parent="."] +unique_name_in_owner = true +layout_mode = 2 +anchor_left = 0.085034 +anchor_top = 0.15748 +anchor_right = 0.239796 +anchor_bottom = 0.84252 +size_flags_horizontal = 2 +texture = ExtResource("3_4q7uh") +stretch_mode = 5 +metadata/_edit_use_anchors_ = true diff --git a/Modules/language_button.gd b/Modules/language_button.gd new file mode 100644 index 0000000..9e204d3 --- /dev/null +++ b/Modules/language_button.gd @@ -0,0 +1,59 @@ +extends Button + +@export var BackTextureNormal:Texture2D + +@export var BackTextureSelected:Texture2D + +@export var IconTextureNormal:Texture2D + +@export var IconTextureSelected:Texture2D + +@export var TextColorNormal:Color + +@export var TextColorSelected:Color + +@export var Text:String + +signal click(node) + + + + +var is_selected:bool=false: + set(value): + + if value!=is_selected: + + if value: + %back.texture=BackTextureSelected + %icon.texture=IconTextureSelected + %text.add_theme_color_override("font_color",TextColorSelected) + bold_label(%text) + else: + %back.texture=BackTextureNormal + %icon.texture=IconTextureNormal + %text.add_theme_color_override("font_color",TextColorNormal) + unbold_label(%text) + is_selected=value + +func _ready() -> void: + %back.texture=BackTextureNormal + %icon.texture=IconTextureNormal + %text.add_theme_color_override("font_color",TextColorNormal) + %text.text=Text + + pass + +func _pressed() -> void: + click.emit(self) + + is_selected=not is_selected + + + +func bold_label(label:Label): + label.add_theme_color_override("font_outline_color",label.get_theme_color("font_color")) + label.add_theme_constant_override("outline_size",5) + +func unbold_label(label:Label): + label.add_theme_constant_override("outline_size",0) diff --git a/common/base/base_control.gd b/common/base/base_control.gd new file mode 100644 index 0000000..4fd92e7 --- /dev/null +++ b/common/base/base_control.gd @@ -0,0 +1,180 @@ +@tool +##基础UI组件 +class_name BaseControl +extends Control + +signal result_data(value) +signal init_complete() +signal load_anim_complete() +signal on_click(_node) +signal on_long_click(_node) +#@export var long_time = 800 +var clickTime = 0 +var clickPosition = Vector2.ZERO +var itemRoot : BaseControl = null + +enum { + RESULT_OK, + RESULT_CANCELED +} + +class GResult : + var code = RESULT_OK + var data = null + func _init(p_code,p_data = null): + self.code = p_code + self.data = p_data + + + +@export var styleBox : StyleBox = null : set = set_styleBox +@export var enter_anim : Animation = null +@export var exit_anim : Animation = null +@export var is_anim = true +@export var on_click_anim : Animation = null +@export var _pivot_offset = "CENTER" +@export var is_Scale = false +@export var is_Rotation = false +@export var OnClickScaleArrNode : Array[Node] = [] +var is_OnClickScale = false +@export var size_max : float = 1; +@export var is_OnClickScaleAwt = false +@export var StatusTime = 0.2 +@export var scaleMax : Vector2 = Vector2(1,1); +@export var scaleMin : Vector2 = Vector2(0,0); +var baseAnimationPlayer : AnimationPlayer = null +func _ready(): + await get_tree().process_frame + OnClickScale() + if is_anim: + init_anim() + playEnter() + + await get_tree().create_timer(0.2).timeout + init_complete.emit() + + +func init_anim(): + if enter_anim == null and exit_anim == null : + return + baseAnimationPlayer = AnimationPlayer.new() + var animationLibrary = AnimationLibrary.new() + if enter_anim != null : + animationLibrary.add_animation("enter",enter_anim) + if exit_anim != null : + animationLibrary.add_animation("exit",exit_anim) + if on_click_anim != null: + animationLibrary.add_animation("on_click_anim",on_click_anim) + baseAnimationPlayer.add_animation_library("",animationLibrary) + add_child(baseAnimationPlayer) + +# + +func playEnter(): + if enter_anim != null and baseAnimationPlayer != null : + baseAnimationPlayer.play("enter") + + + +func playExit(): + if exit_anim != null and baseAnimationPlayer != null : + baseAnimationPlayer.play("exit") + await baseAnimationPlayer.animation_finished + +#func queue_free(): + #if is_anim: + #await playExit() + #super.queue_free() + +func set_styleBox(value) : + styleBox = value + queue_redraw() +var is_move_r = false +func _gui_input(event): + if event is InputEventScreenTouch : + is_move_r = event.pressed + if event.pressed == true: + clickTime = Time.get_ticks_msec() + clickPosition = event.position + pressed_true() + if event.pressed == false: + var diff = Time.get_ticks_msec() - clickTime + clickTime = 0 + #if event.position.distance_to(clickPosition)<2 : + if mouse_filter == Control.MOUSE_FILTER_STOP : + accept_event() + if diff < 800: + emit_signal("on_click",self) + if on_click_anim != null and baseAnimationPlayer != null : + baseAnimationPlayer.play("on_click_anim") + click() + if is_Scale: + onScale() + if is_Rotation: + onRotation() + is_OnClickScale = !is_OnClickScale + OnClickScale() + + else : + emit_signal("on_long_click",self) + long_click() + pressed_false() +func OnClickScale(): + for node : Node in OnClickScaleArrNode: + if is_OnClickScale: + node.onStart() + else: + node.onEnd() + await get_tree().create_timer(StatusTime).timeout +func onScale(): + var tween = create_tween() + tween.tween_property(self, "scale", Vector2(1 + (0.2*size_max),1 + (0.2*size_max)), 0.1) + tween.tween_property(self, "scale", Vector2(1 - (0.05*size_max),1 - (0.05*size_max)), 0.15) + tween.tween_property(self, "scale", Vector2(1,1), 0.1) +func onRotation(): + var tween = create_tween() + tween.tween_property(self, "rotation_degrees", 50*size_max, 0.1) + tween.tween_property(self, "rotation_degrees", -60*size_max, 0.15) + tween.tween_property(self, "rotation_degrees", 0, 0.1) +func onStart(): + #visible = true + #_pivot_offset = "CENTER_Left" + scale = scaleMin + var tween = create_tween() + tween.tween_property(self, "scale", scaleMin - (scaleMin*0.05), 0.1) + tween.tween_property(self, "scale", scaleMax , StatusTime) +func onEnd(): + #_pivot_offset = "CENTER_RIGHT" + scale = scaleMax + var tween = create_tween() + tween.tween_property(self, "scale", scaleMin, StatusTime) + +func pressed_true(): + pass +func pressed_false(): + pass +func _physics_process(delta: float) -> void: + if _pivot_offset == "CENTER": + pivot_offset = size/2 + if _pivot_offset == "CENTER_RIGHT": + pivot_offset.x = size.x + pivot_offset.y = size.y/2 + if _pivot_offset == "CENTER_Left": + pivot_offset.x = 0 + pivot_offset.y = size.y/2 +func _process(delta): + + + if not Rect2(global_position, global_position+size).has_point(get_global_mouse_position()): + pressed_false() + + +func click(): + pass +func long_click(): + pass + + +func _draw(): + if styleBox !=null : + draw_style_box(styleBox, Rect2(Vector2(0,0) , size )) diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..9d8b7fa --- /dev/null +++ b/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icon.svg.import b/icon.svg.import new file mode 100644 index 0000000..fccaa21 --- /dev/null +++ b/icon.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4vnhgebr3neq" +path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.svg" +dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.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 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/main.tscn b/main.tscn new file mode 100644 index 0000000..bf90cc5 --- /dev/null +++ b/main.tscn @@ -0,0 +1,214 @@ +[gd_scene load_steps=19 format=3 uid="uid://dwv63mpx0y857"] + +[ext_resource type="Texture2D" uid="uid://ctqyt5yh6uy78" path="res://res/bg/bg_dropdown_menu_active.png" id="1_rrn5x"] +[ext_resource type="Texture2D" uid="uid://bkau0qkht0c8j" path="res://res/icon/icon_more_option_default.png" id="2_kb1k2"] +[ext_resource type="Texture2D" uid="uid://bjhn4gko31i06" path="res://res/icon/icon_language_setting_default.png" id="2_nfbe6"] +[ext_resource type="Texture2D" uid="uid://bnl4wc12yukw0" path="res://res/icon/icon_terminal_default.png" id="3_2tet8"] +[ext_resource type="Script" path="res://Modules/ButtonItem.gd" id="3_8cofn"] +[ext_resource type="Texture2D" uid="uid://bmv5quilkypgr" path="res://res/preview/chinese.png" id="3_kegs1"] +[ext_resource type="Texture2D" uid="uid://cbmjjcfmyc8wt" path="res://res/bg/bg_station_path_gradient.png" id="4_d7o7v"] +[ext_resource type="Texture2D" uid="uid://cblh0mxrlrw3s" path="res://res/icon/icon_hide_video_default.png" id="4_dco67"] +[ext_resource type="Texture2D" uid="uid://d31dauellifod" path="res://res/icon/icon_language_setting_hover.png" id="4_ew1by"] +[ext_resource type="Texture2D" uid="uid://odtdv6uuxul6" path="res://res/mask/overlay_ad_mask_semi_transparent.png" id="5_6mape"] +[ext_resource type="Texture2D" uid="uid://c4jhgcdnltalm" path="res://res/icon/icon_more_option_hover.png" id="8_5t1lf"] +[ext_resource type="PackedScene" uid="uid://bb8i20x4xutp5" path="res://Modules/LanguageButton.tscn" id="11_d1sdq"] +[ext_resource type="Texture2D" uid="uid://drcukx1rmjs77" path="res://res/icon/icon_English_default.png" id="12_drwbu"] +[ext_resource type="Texture2D" uid="uid://dfktl3007ojxk" path="res://res/icon/icon_English_hover.png" id="13_n2aax"] +[ext_resource type="Texture2D" uid="uid://ocudv2g8r1s7" path="res://res/icon/icon_Japanese_default.png" id="14_5xi5c"] +[ext_resource type="Texture2D" uid="uid://b84pps636wbya" path="res://res/icon/icon_Japanese_hover.png" id="15_nay10"] + +[sub_resource type="Curve2D" id="Curve2D_weg51"] +_data = { +"points": PackedVector2Array(0, 0, 0, 0, 322.5, -1.5, 0, 0, 0, 0, 182.5, 210.5, 0, 0, 0, 0, 95.5, 434.5, 0, 0, 0, 0, 59.5, 747.5, 0, 0, 0, 0, 59.5, 972.5) +} +point_count = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_sbyit"] + +[node name="Control" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[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.0431373, 0.101961, 0.164706, 1) + +[node name="MarginContainer" type="MarginContainer" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 87 +theme_override_constants/margin_top = 25 +theme_override_constants/margin_right = 88 +theme_override_constants/margin_bottom = 124 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"] +layout_mode = 2 +theme_override_constants/separation = 31 + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VBoxContainer"] +layout_mode = 2 +theme_override_constants/separation = 27 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/VBoxContainer/HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 10 +texture = ExtResource("1_rrn5x") + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VBoxContainer/HBoxContainer/TextureRect"] +layout_mode = 1 +anchors_preset = -1 +anchor_left = 0.030303 +anchor_right = 0.933884 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +metadata/_edit_use_anchors_ = true + +[node name="Language" type="Button" parent="MarginContainer/VBoxContainer/HBoxContainer/TextureRect/HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +flat = true +script = ExtResource("3_8cofn") +TextureNormal = ExtResource("2_nfbe6") +TextureSelected = ExtResource("4_ew1by") +is_Scale = true + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/VBoxContainer/HBoxContainer/TextureRect/HBoxContainer/Language"] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -29.0 +offset_top = -29.0 +offset_right = 29.0 +offset_bottom = 29.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("2_nfbe6") + +[node name="Tunnel" type="TextureRect" parent="MarginContainer/VBoxContainer/HBoxContainer/TextureRect/HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 4 +texture = ExtResource("3_2tet8") +stretch_mode = 5 + +[node name="TextureRect3" type="TextureRect" parent="MarginContainer/VBoxContainer/HBoxContainer/TextureRect/HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 4 +texture = ExtResource("4_dco67") +stretch_mode = 5 + +[node name="MoreOption" type="Button" parent="MarginContainer/VBoxContainer/HBoxContainer"] +custom_minimum_size = Vector2(39, 0) +layout_mode = 2 +size_flags_horizontal = 4 +flat = true +script = ExtResource("3_8cofn") +TextureNormal = ExtResource("2_kb1k2") +TextureSelected = ExtResource("8_5t1lf") + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/VBoxContainer/HBoxContainer/MoreOption"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("2_kb1k2") +stretch_mode = 5 + +[node name="HBoxContainer2" type="HBoxContainer" parent="MarginContainer/VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 3 +theme_override_constants/separation = 68 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/VBoxContainer/HBoxContainer2"] +layout_mode = 2 +texture = ExtResource("4_d7o7v") + +[node name="Path2D" type="Path2D" parent="MarginContainer/VBoxContainer/HBoxContainer2/TextureRect"] +curve = SubResource("Curve2D_weg51") + +[node name="Panel" type="Panel" parent="MarginContainer/VBoxContainer/HBoxContainer2"] +custom_minimum_size = Vector2(1346, 0) +layout_mode = 2 +theme_override_styles/panel = SubResource("StyleBoxFlat_sbyit") + +[node name="Panel2" type="Panel" parent="MarginContainer/VBoxContainer/HBoxContainer2"] +custom_minimum_size = Vector2(1426, 0) +layout_mode = 2 + +[node name="LanguagePanel" type="Control" parent="MarginContainer/VBoxContainer/HBoxContainer2/Panel2"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="mask" type="TextureRect" parent="MarginContainer/VBoxContainer/HBoxContainer2/Panel2/LanguagePanel"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("5_6mape") + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/HBoxContainer2/Panel2/LanguagePanel"] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -20.0 +offset_top = -20.0 +offset_right = 20.0 +offset_bottom = 20.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/separation = 37 + +[node name="Button" parent="MarginContainer/VBoxContainer/HBoxContainer2/Panel2/LanguagePanel/VBoxContainer" instance=ExtResource("11_d1sdq")] +layout_mode = 2 +IconTextureNormal = ExtResource("12_drwbu") +IconTextureSelected = ExtResource("13_n2aax") +Text = "English" + +[node name="Button2" parent="MarginContainer/VBoxContainer/HBoxContainer2/Panel2/LanguagePanel/VBoxContainer" instance=ExtResource("11_d1sdq")] +layout_mode = 2 + +[node name="Button3" parent="MarginContainer/VBoxContainer/HBoxContainer2/Panel2/LanguagePanel/VBoxContainer" instance=ExtResource("11_d1sdq")] +layout_mode = 2 +IconTextureNormal = ExtResource("14_5xi5c") +IconTextureSelected = ExtResource("15_nay10") +Text = "日本語" + +[node name="TextureRect" type="TextureRect" parent="."] +visible = false +modulate = Color(1, 1, 1, 0.345098) +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("3_kegs1") diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..5105c2e --- /dev/null +++ b/project.godot @@ -0,0 +1,28 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[application] + +config/name="Large Screen" +config/features=PackedStringArray("4.3", "Mobile") +config/icon="res://icon.svg" + +[display] + +window/size/viewport_width=3840 +window/size/viewport_height=1080 +window/size/initial_position_type=0 +window/size/initial_position=Vector2i(300, 300) +window/size/resizable=false +window/stretch/mode="canvas_items" + +[rendering] + +renderer/rendering_method="mobile" diff --git a/res/bar/bar_terminal_search_default.png b/res/bar/bar_terminal_search_default.png new file mode 100644 index 0000000..5111df3 Binary files /dev/null and b/res/bar/bar_terminal_search_default.png differ diff --git a/res/bar/bar_terminal_search_default.png.import b/res/bar/bar_terminal_search_default.png.import new file mode 100644 index 0000000..2ba64ea --- /dev/null +++ b/res/bar/bar_terminal_search_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hb4ca8supnca" +path="res://.godot/imported/bar_terminal_search_default.png-f00ac555723a048bafc3a31d6019870b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/bar/bar_terminal_search_default.png" +dest_files=["res://.godot/imported/bar_terminal_search_default.png-f00ac555723a048bafc3a31d6019870b.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 diff --git a/res/bar/bar_terminal_search_hover.png b/res/bar/bar_terminal_search_hover.png new file mode 100644 index 0000000..77f3e37 Binary files /dev/null and b/res/bar/bar_terminal_search_hover.png differ diff --git a/res/bar/bar_terminal_search_hover.png.import b/res/bar/bar_terminal_search_hover.png.import new file mode 100644 index 0000000..4cd9189 --- /dev/null +++ b/res/bar/bar_terminal_search_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdk8gdxdlcxnq" +path="res://.godot/imported/bar_terminal_search_hover.png-f134a4a0b6486c3455ecbf2c0fc0ba2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/bar/bar_terminal_search_hover.png" +dest_files=["res://.godot/imported/bar_terminal_search_hover.png-f134a4a0b6486c3455ecbf2c0fc0ba2b.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 diff --git a/res/bg/bg_arrival_info_default.png b/res/bg/bg_arrival_info_default.png new file mode 100644 index 0000000..1c5ac04 Binary files /dev/null and b/res/bg/bg_arrival_info_default.png differ diff --git a/res/bg/bg_arrival_info_default.png.import b/res/bg/bg_arrival_info_default.png.import new file mode 100644 index 0000000..26d12ab --- /dev/null +++ b/res/bg/bg_arrival_info_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3851frhnb7ns" +path="res://.godot/imported/bg_arrival_info_default.png-29ad25cb8b77c775c85252a47b5a6da7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/bg/bg_arrival_info_default.png" +dest_files=["res://.godot/imported/bg_arrival_info_default.png-29ad25cb8b77c775c85252a47b5a6da7.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 diff --git a/res/bg/bg_dropdown_menu_active.png b/res/bg/bg_dropdown_menu_active.png new file mode 100644 index 0000000..956585a Binary files /dev/null and b/res/bg/bg_dropdown_menu_active.png differ diff --git a/res/bg/bg_dropdown_menu_active.png.import b/res/bg/bg_dropdown_menu_active.png.import new file mode 100644 index 0000000..202c1d9 --- /dev/null +++ b/res/bg/bg_dropdown_menu_active.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctqyt5yh6uy78" +path="res://.godot/imported/bg_dropdown_menu_active.png-e97ae6c7273d9952f2ae2f1fe849f459.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/bg/bg_dropdown_menu_active.png" +dest_files=["res://.godot/imported/bg_dropdown_menu_active.png-e97ae6c7273d9952f2ae2f1fe849f459.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 diff --git a/res/bg/bg_info_panel_speed_safebelt_default.png b/res/bg/bg_info_panel_speed_safebelt_default.png new file mode 100644 index 0000000..b7473bb Binary files /dev/null and b/res/bg/bg_info_panel_speed_safebelt_default.png differ diff --git a/res/bg/bg_info_panel_speed_safebelt_default.png.import b/res/bg/bg_info_panel_speed_safebelt_default.png.import new file mode 100644 index 0000000..4638773 --- /dev/null +++ b/res/bg/bg_info_panel_speed_safebelt_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ncxqcxrll4gn" +path="res://.godot/imported/bg_info_panel_speed_safebelt_default.png-b6f9d9b72adebdcff5cd37d59d04ee1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/bg/bg_info_panel_speed_safebelt_default.png" +dest_files=["res://.godot/imported/bg_info_panel_speed_safebelt_default.png-b6f9d9b72adebdcff5cd37d59d04ee1c.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 diff --git a/res/bg/bg_info_panel_time_default.png b/res/bg/bg_info_panel_time_default.png new file mode 100644 index 0000000..9371f06 Binary files /dev/null and b/res/bg/bg_info_panel_time_default.png differ diff --git a/res/bg/bg_info_panel_time_default.png.import b/res/bg/bg_info_panel_time_default.png.import new file mode 100644 index 0000000..4adbe39 --- /dev/null +++ b/res/bg/bg_info_panel_time_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnpguw2kxiycr" +path="res://.godot/imported/bg_info_panel_time_default.png-f0b4e50dc993466b1ff598a16381489c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/bg/bg_info_panel_time_default.png" +dest_files=["res://.godot/imported/bg_info_panel_time_default.png-f0b4e50dc993466b1ff598a16381489c.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 diff --git a/res/bg/bg_station_path_gradient.png b/res/bg/bg_station_path_gradient.png new file mode 100644 index 0000000..3d08d00 Binary files /dev/null and b/res/bg/bg_station_path_gradient.png differ diff --git a/res/bg/bg_station_path_gradient.png.import b/res/bg/bg_station_path_gradient.png.import new file mode 100644 index 0000000..85306f7 --- /dev/null +++ b/res/bg/bg_station_path_gradient.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbmjjcfmyc8wt" +path="res://.godot/imported/bg_station_path_gradient.png-87fb077183b3dd1b69cf7d4cce99aef2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/bg/bg_station_path_gradient.png" +dest_files=["res://.godot/imported/bg_station_path_gradient.png-87fb077183b3dd1b69cf7d4cce99aef2.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 diff --git a/res/button/button_language_default.png b/res/button/button_language_default.png new file mode 100644 index 0000000..99bf325 Binary files /dev/null and b/res/button/button_language_default.png differ diff --git a/res/button/button_language_default.png.import b/res/button/button_language_default.png.import new file mode 100644 index 0000000..af28efb --- /dev/null +++ b/res/button/button_language_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6c0dhw65i2cf" +path="res://.godot/imported/button_language_default.png-474003999c3e4573356fb311b0fc4a2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/button/button_language_default.png" +dest_files=["res://.godot/imported/button_language_default.png-474003999c3e4573356fb311b0fc4a2f.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 diff --git a/res/button/button_language_hover.png b/res/button/button_language_hover.png new file mode 100644 index 0000000..822229d Binary files /dev/null and b/res/button/button_language_hover.png differ diff --git a/res/button/button_language_hover.png.import b/res/button/button_language_hover.png.import new file mode 100644 index 0000000..9b0f905 --- /dev/null +++ b/res/button/button_language_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uquuc78pyxme" +path="res://.godot/imported/button_language_hover.png-203ec65621c9291f330052dbff00e478.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/button/button_language_hover.png" +dest_files=["res://.godot/imported/button_language_hover.png-203ec65621c9291f330052dbff00e478.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 diff --git a/res/icon/icon_Chinese_default.png b/res/icon/icon_Chinese_default.png new file mode 100644 index 0000000..cfaf76c Binary files /dev/null and b/res/icon/icon_Chinese_default.png differ diff --git a/res/icon/icon_Chinese_default.png.import b/res/icon/icon_Chinese_default.png.import new file mode 100644 index 0000000..fa9a402 --- /dev/null +++ b/res/icon/icon_Chinese_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwxv6h6r67ngd" +path="res://.godot/imported/icon_Chinese_default.png-8bf29c027be070cee0e9336db6a02027.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_Chinese_default.png" +dest_files=["res://.godot/imported/icon_Chinese_default.png-8bf29c027be070cee0e9336db6a02027.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 diff --git a/res/icon/icon_Chinese_hover.png b/res/icon/icon_Chinese_hover.png new file mode 100644 index 0000000..a826aa3 Binary files /dev/null and b/res/icon/icon_Chinese_hover.png differ diff --git a/res/icon/icon_Chinese_hover.png.import b/res/icon/icon_Chinese_hover.png.import new file mode 100644 index 0000000..fe225c8 --- /dev/null +++ b/res/icon/icon_Chinese_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmftxg485krwg" +path="res://.godot/imported/icon_Chinese_hover.png-a7783724b1b63a749b00bfb9a42c2462.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_Chinese_hover.png" +dest_files=["res://.godot/imported/icon_Chinese_hover.png-a7783724b1b63a749b00bfb9a42c2462.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 diff --git a/res/icon/icon_English_default.png b/res/icon/icon_English_default.png new file mode 100644 index 0000000..ba5f561 Binary files /dev/null and b/res/icon/icon_English_default.png differ diff --git a/res/icon/icon_English_default.png.import b/res/icon/icon_English_default.png.import new file mode 100644 index 0000000..83f803f --- /dev/null +++ b/res/icon/icon_English_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drcukx1rmjs77" +path="res://.godot/imported/icon_English_default.png-e35f406328e0ce45835d1ab2ca2a7184.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_English_default.png" +dest_files=["res://.godot/imported/icon_English_default.png-e35f406328e0ce45835d1ab2ca2a7184.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 diff --git a/res/icon/icon_English_hover.png b/res/icon/icon_English_hover.png new file mode 100644 index 0000000..79e6c3b Binary files /dev/null and b/res/icon/icon_English_hover.png differ diff --git a/res/icon/icon_English_hover.png.import b/res/icon/icon_English_hover.png.import new file mode 100644 index 0000000..dd42ff3 --- /dev/null +++ b/res/icon/icon_English_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfktl3007ojxk" +path="res://.godot/imported/icon_English_hover.png-cc6d261ce986fafbf3ac6278feb50d01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_English_hover.png" +dest_files=["res://.godot/imported/icon_English_hover.png-cc6d261ce986fafbf3ac6278feb50d01.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 diff --git a/res/icon/icon_Japanese_default.png b/res/icon/icon_Japanese_default.png new file mode 100644 index 0000000..0ed88db Binary files /dev/null and b/res/icon/icon_Japanese_default.png differ diff --git a/res/icon/icon_Japanese_default.png.import b/res/icon/icon_Japanese_default.png.import new file mode 100644 index 0000000..2c79275 --- /dev/null +++ b/res/icon/icon_Japanese_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ocudv2g8r1s7" +path="res://.godot/imported/icon_Japanese_default.png-ffb20d50bc14133f7ddebbbbf577b92f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_Japanese_default.png" +dest_files=["res://.godot/imported/icon_Japanese_default.png-ffb20d50bc14133f7ddebbbbf577b92f.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 diff --git a/res/icon/icon_Japanese_hover.png b/res/icon/icon_Japanese_hover.png new file mode 100644 index 0000000..777db10 Binary files /dev/null and b/res/icon/icon_Japanese_hover.png differ diff --git a/res/icon/icon_Japanese_hover.png.import b/res/icon/icon_Japanese_hover.png.import new file mode 100644 index 0000000..5df40bb --- /dev/null +++ b/res/icon/icon_Japanese_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b84pps636wbya" +path="res://.godot/imported/icon_Japanese_hover.png-cdd6c14b55bc8250ca053f8310cf0c17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_Japanese_hover.png" +dest_files=["res://.godot/imported/icon_Japanese_hover.png-cdd6c14b55bc8250ca053f8310cf0c17.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 diff --git a/res/icon/icon_hide_video_default.png b/res/icon/icon_hide_video_default.png new file mode 100644 index 0000000..0860228 Binary files /dev/null and b/res/icon/icon_hide_video_default.png differ diff --git a/res/icon/icon_hide_video_default.png.import b/res/icon/icon_hide_video_default.png.import new file mode 100644 index 0000000..9b9b2f0 --- /dev/null +++ b/res/icon/icon_hide_video_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cblh0mxrlrw3s" +path="res://.godot/imported/icon_hide_video_default.png-395fe4ec525c34bca3fa55f63edb7730.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_hide_video_default.png" +dest_files=["res://.godot/imported/icon_hide_video_default.png-395fe4ec525c34bca3fa55f63edb7730.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 diff --git a/res/icon/icon_hide_video_hover.png b/res/icon/icon_hide_video_hover.png new file mode 100644 index 0000000..73e5d35 Binary files /dev/null and b/res/icon/icon_hide_video_hover.png differ diff --git a/res/icon/icon_hide_video_hover.png.import b/res/icon/icon_hide_video_hover.png.import new file mode 100644 index 0000000..8dd98dc --- /dev/null +++ b/res/icon/icon_hide_video_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uaj4hq8l4sfr" +path="res://.godot/imported/icon_hide_video_hover.png-f9a0b977fce84992773586e7b13251bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_hide_video_hover.png" +dest_files=["res://.godot/imported/icon_hide_video_hover.png-f9a0b977fce84992773586e7b13251bb.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 diff --git a/res/icon/icon_language_close_default.png b/res/icon/icon_language_close_default.png new file mode 100644 index 0000000..1a96183 Binary files /dev/null and b/res/icon/icon_language_close_default.png differ diff --git a/res/icon/icon_language_close_default.png.import b/res/icon/icon_language_close_default.png.import new file mode 100644 index 0000000..a41da98 --- /dev/null +++ b/res/icon/icon_language_close_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xr6duvavyfg8" +path="res://.godot/imported/icon_language_close_default.png-af37789c06d261455a07fab25a7275c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_language_close_default.png" +dest_files=["res://.godot/imported/icon_language_close_default.png-af37789c06d261455a07fab25a7275c5.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 diff --git a/res/icon/icon_language_close_hover.png b/res/icon/icon_language_close_hover.png new file mode 100644 index 0000000..b521a81 Binary files /dev/null and b/res/icon/icon_language_close_hover.png differ diff --git a/res/icon/icon_language_close_hover.png.import b/res/icon/icon_language_close_hover.png.import new file mode 100644 index 0000000..0e71570 --- /dev/null +++ b/res/icon/icon_language_close_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqnjclc8biqve" +path="res://.godot/imported/icon_language_close_hover.png-705edaf2214868bbab1675fca926c414.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_language_close_hover.png" +dest_files=["res://.godot/imported/icon_language_close_hover.png-705edaf2214868bbab1675fca926c414.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 diff --git a/res/icon/icon_language_setting_default.png b/res/icon/icon_language_setting_default.png new file mode 100644 index 0000000..bc38d97 Binary files /dev/null and b/res/icon/icon_language_setting_default.png differ diff --git a/res/icon/icon_language_setting_default.png.import b/res/icon/icon_language_setting_default.png.import new file mode 100644 index 0000000..07d8eab --- /dev/null +++ b/res/icon/icon_language_setting_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjhn4gko31i06" +path="res://.godot/imported/icon_language_setting_default.png-f7b20e1fea9b2327ecfd06114404a655.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_language_setting_default.png" +dest_files=["res://.godot/imported/icon_language_setting_default.png-f7b20e1fea9b2327ecfd06114404a655.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 diff --git a/res/icon/icon_language_setting_hover.png b/res/icon/icon_language_setting_hover.png new file mode 100644 index 0000000..9eb8649 Binary files /dev/null and b/res/icon/icon_language_setting_hover.png differ diff --git a/res/icon/icon_language_setting_hover.png.import b/res/icon/icon_language_setting_hover.png.import new file mode 100644 index 0000000..4d705f7 --- /dev/null +++ b/res/icon/icon_language_setting_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d31dauellifod" +path="res://.godot/imported/icon_language_setting_hover.png-35266794bc13c79b2446911469375f93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_language_setting_hover.png" +dest_files=["res://.godot/imported/icon_language_setting_hover.png-35266794bc13c79b2446911469375f93.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 diff --git a/res/icon/icon_more_option_default.png b/res/icon/icon_more_option_default.png new file mode 100644 index 0000000..7ad83fc Binary files /dev/null and b/res/icon/icon_more_option_default.png differ diff --git a/res/icon/icon_more_option_default.png.import b/res/icon/icon_more_option_default.png.import new file mode 100644 index 0000000..1a2e29a --- /dev/null +++ b/res/icon/icon_more_option_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkau0qkht0c8j" +path="res://.godot/imported/icon_more_option_default.png-8468847804341dac3327954f96268e32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_more_option_default.png" +dest_files=["res://.godot/imported/icon_more_option_default.png-8468847804341dac3327954f96268e32.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 diff --git a/res/icon/icon_more_option_hover.png b/res/icon/icon_more_option_hover.png new file mode 100644 index 0000000..6df1056 Binary files /dev/null and b/res/icon/icon_more_option_hover.png differ diff --git a/res/icon/icon_more_option_hover.png.import b/res/icon/icon_more_option_hover.png.import new file mode 100644 index 0000000..285c746 --- /dev/null +++ b/res/icon/icon_more_option_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4jhgcdnltalm" +path="res://.godot/imported/icon_more_option_hover.png-0ab3d54bedb3aefec14bfb1126515bb9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_more_option_hover.png" +dest_files=["res://.godot/imported/icon_more_option_hover.png-0ab3d54bedb3aefec14bfb1126515bb9.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 diff --git a/res/icon/icon_safebelt_no.png b/res/icon/icon_safebelt_no.png new file mode 100644 index 0000000..44232a3 Binary files /dev/null and b/res/icon/icon_safebelt_no.png differ diff --git a/res/icon/icon_safebelt_no.png.import b/res/icon/icon_safebelt_no.png.import new file mode 100644 index 0000000..ba69729 --- /dev/null +++ b/res/icon/icon_safebelt_no.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crnr0xgco3uaq" +path="res://.godot/imported/icon_safebelt_no.png-5e19bba846c4057d1f644ede8f191921.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_safebelt_no.png" +dest_files=["res://.godot/imported/icon_safebelt_no.png-5e19bba846c4057d1f644ede8f191921.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 diff --git a/res/icon/icon_safebelt_yes.png b/res/icon/icon_safebelt_yes.png new file mode 100644 index 0000000..6bf3fca Binary files /dev/null and b/res/icon/icon_safebelt_yes.png differ diff --git a/res/icon/icon_safebelt_yes.png.import b/res/icon/icon_safebelt_yes.png.import new file mode 100644 index 0000000..c58ee51 --- /dev/null +++ b/res/icon/icon_safebelt_yes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkftfoedt3036" +path="res://.godot/imported/icon_safebelt_yes.png-157d0f852598453dce98afa38104354a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_safebelt_yes.png" +dest_files=["res://.godot/imported/icon_safebelt_yes.png-157d0f852598453dce98afa38104354a.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 diff --git a/res/icon/icon_show_video_default.png b/res/icon/icon_show_video_default.png new file mode 100644 index 0000000..642d3cf Binary files /dev/null and b/res/icon/icon_show_video_default.png differ diff --git a/res/icon/icon_show_video_default.png.import b/res/icon/icon_show_video_default.png.import new file mode 100644 index 0000000..9bbb225 --- /dev/null +++ b/res/icon/icon_show_video_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sbsycy5byl8k" +path="res://.godot/imported/icon_show_video_default.png-8837c2fe607e1614d8699f234fbad6ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_show_video_default.png" +dest_files=["res://.godot/imported/icon_show_video_default.png-8837c2fe607e1614d8699f234fbad6ad.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 diff --git a/res/icon/icon_show_video_hover.png b/res/icon/icon_show_video_hover.png new file mode 100644 index 0000000..eb8c5f8 Binary files /dev/null and b/res/icon/icon_show_video_hover.png differ diff --git a/res/icon/icon_show_video_hover.png.import b/res/icon/icon_show_video_hover.png.import new file mode 100644 index 0000000..625840a --- /dev/null +++ b/res/icon/icon_show_video_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0fslq0o4y3cl" +path="res://.godot/imported/icon_show_video_hover.png-f078881a424a7575d232d589c142224c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_show_video_hover.png" +dest_files=["res://.godot/imported/icon_show_video_hover.png-f078881a424a7575d232d589c142224c.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 diff --git a/res/icon/icon_station_indicator_large_flashing_next.png b/res/icon/icon_station_indicator_large_flashing_next.png new file mode 100644 index 0000000..877e327 Binary files /dev/null and b/res/icon/icon_station_indicator_large_flashing_next.png differ diff --git a/res/icon/icon_station_indicator_large_flashing_next.png.import b/res/icon/icon_station_indicator_large_flashing_next.png.import new file mode 100644 index 0000000..3c89e61 --- /dev/null +++ b/res/icon/icon_station_indicator_large_flashing_next.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlpmgixgugrfl" +path="res://.godot/imported/icon_station_indicator_large_flashing_next.png-91e0f26b3aa0d33dacd7c76e8eaaf499.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_station_indicator_large_flashing_next.png" +dest_files=["res://.godot/imported/icon_station_indicator_large_flashing_next.png-91e0f26b3aa0d33dacd7c76e8eaaf499.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 diff --git a/res/icon/icon_station_indicator_medium_next_2.png b/res/icon/icon_station_indicator_medium_next_2.png new file mode 100644 index 0000000..67215ac Binary files /dev/null and b/res/icon/icon_station_indicator_medium_next_2.png differ diff --git a/res/icon/icon_station_indicator_medium_next_2.png.import b/res/icon/icon_station_indicator_medium_next_2.png.import new file mode 100644 index 0000000..e55eecd --- /dev/null +++ b/res/icon/icon_station_indicator_medium_next_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjon7vqmvibkd" +path="res://.godot/imported/icon_station_indicator_medium_next_2.png-84ad8a95d400577e3e8e310a9dbd9e50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_station_indicator_medium_next_2.png" +dest_files=["res://.godot/imported/icon_station_indicator_medium_next_2.png-84ad8a95d400577e3e8e310a9dbd9e50.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 diff --git a/res/icon/icon_station_indicator_small_next_3.png b/res/icon/icon_station_indicator_small_next_3.png new file mode 100644 index 0000000..baa536e Binary files /dev/null and b/res/icon/icon_station_indicator_small_next_3.png differ diff --git a/res/icon/icon_station_indicator_small_next_3.png.import b/res/icon/icon_station_indicator_small_next_3.png.import new file mode 100644 index 0000000..b42dd30 --- /dev/null +++ b/res/icon/icon_station_indicator_small_next_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3keowm76ccmy" +path="res://.godot/imported/icon_station_indicator_small_next_3.png-7f768390c3812dbd1a8a05739de1b51e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_station_indicator_small_next_3.png" +dest_files=["res://.godot/imported/icon_station_indicator_small_next_3.png-7f768390c3812dbd1a8a05739de1b51e.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 diff --git a/res/icon/icon_station_indicator_tiny_next_4.png b/res/icon/icon_station_indicator_tiny_next_4.png new file mode 100644 index 0000000..71d2907 Binary files /dev/null and b/res/icon/icon_station_indicator_tiny_next_4.png differ diff --git a/res/icon/icon_station_indicator_tiny_next_4.png.import b/res/icon/icon_station_indicator_tiny_next_4.png.import new file mode 100644 index 0000000..94bdc58 --- /dev/null +++ b/res/icon/icon_station_indicator_tiny_next_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccas8lmykaojh" +path="res://.godot/imported/icon_station_indicator_tiny_next_4.png-2f4674f70b12bb27023f13805c373010.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_station_indicator_tiny_next_4.png" +dest_files=["res://.godot/imported/icon_station_indicator_tiny_next_4.png-2f4674f70b12bb27023f13805c373010.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 diff --git a/res/icon/icon_terminal_default.png b/res/icon/icon_terminal_default.png new file mode 100644 index 0000000..b7e84df Binary files /dev/null and b/res/icon/icon_terminal_default.png differ diff --git a/res/icon/icon_terminal_default.png.import b/res/icon/icon_terminal_default.png.import new file mode 100644 index 0000000..51d4f68 --- /dev/null +++ b/res/icon/icon_terminal_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnl4wc12yukw0" +path="res://.godot/imported/icon_terminal_default.png-df3a1d0de511bad2b56afa50cb2141e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_terminal_default.png" +dest_files=["res://.godot/imported/icon_terminal_default.png-df3a1d0de511bad2b56afa50cb2141e3.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 diff --git a/res/icon/icon_terminal_hover.png b/res/icon/icon_terminal_hover.png new file mode 100644 index 0000000..3b901f0 Binary files /dev/null and b/res/icon/icon_terminal_hover.png differ diff --git a/res/icon/icon_terminal_hover.png.import b/res/icon/icon_terminal_hover.png.import new file mode 100644 index 0000000..3890757 --- /dev/null +++ b/res/icon/icon_terminal_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvv784xu4xhoe" +path="res://.godot/imported/icon_terminal_hover.png-db2b6fe5363cd9d0d0938e4c43dd90c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/icon/icon_terminal_hover.png" +dest_files=["res://.godot/imported/icon_terminal_hover.png-db2b6fe5363cd9d0d0938e4c43dd90c3.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 diff --git a/res/mask/overlay_ad_mask_semi_transparent.png b/res/mask/overlay_ad_mask_semi_transparent.png new file mode 100644 index 0000000..a642b92 Binary files /dev/null and b/res/mask/overlay_ad_mask_semi_transparent.png differ diff --git a/res/mask/overlay_ad_mask_semi_transparent.png.import b/res/mask/overlay_ad_mask_semi_transparent.png.import new file mode 100644 index 0000000..dd8dc27 --- /dev/null +++ b/res/mask/overlay_ad_mask_semi_transparent.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://odtdv6uuxul6" +path="res://.godot/imported/overlay_ad_mask_semi_transparent.png-88f1f76fa7439b4312cf96d1aaeab604.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/mask/overlay_ad_mask_semi_transparent.png" +dest_files=["res://.godot/imported/overlay_ad_mask_semi_transparent.png-88f1f76fa7439b4312cf96d1aaeab604.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 diff --git a/res/mask/overlay_drive_mask_semi_transparent.png b/res/mask/overlay_drive_mask_semi_transparent.png new file mode 100644 index 0000000..f230c02 Binary files /dev/null and b/res/mask/overlay_drive_mask_semi_transparent.png differ diff --git a/res/mask/overlay_drive_mask_semi_transparent.png.import b/res/mask/overlay_drive_mask_semi_transparent.png.import new file mode 100644 index 0000000..a55eb0d --- /dev/null +++ b/res/mask/overlay_drive_mask_semi_transparent.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpx1jnpwy316p" +path="res://.godot/imported/overlay_drive_mask_semi_transparent.png-2d59c457b7776c21cd78360ab689f87a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/mask/overlay_drive_mask_semi_transparent.png" +dest_files=["res://.godot/imported/overlay_drive_mask_semi_transparent.png-2d59c457b7776c21cd78360ab689f87a.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 diff --git a/res/preview/chinese.png b/res/preview/chinese.png new file mode 100644 index 0000000..8d70d45 Binary files /dev/null and b/res/preview/chinese.png differ diff --git a/res/preview/chinese.png.import b/res/preview/chinese.png.import new file mode 100644 index 0000000..b4ed768 --- /dev/null +++ b/res/preview/chinese.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmv5quilkypgr" +path="res://.godot/imported/chinese.png-e3303b356e78585404b50cc43bd9c73c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/preview/chinese.png" +dest_files=["res://.godot/imported/chinese.png-e3303b356e78585404b50cc43bd9c73c.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 diff --git a/res/window/window_terminal_search_default.png b/res/window/window_terminal_search_default.png new file mode 100644 index 0000000..dafee3c Binary files /dev/null and b/res/window/window_terminal_search_default.png differ diff --git a/res/window/window_terminal_search_default.png.import b/res/window/window_terminal_search_default.png.import new file mode 100644 index 0000000..88db64a --- /dev/null +++ b/res/window/window_terminal_search_default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba17bbp2br64h" +path="res://.godot/imported/window_terminal_search_default.png-ea5768d47809e0c3964ece58b0666ea1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/window/window_terminal_search_default.png" +dest_files=["res://.godot/imported/window_terminal_search_default.png-ea5768d47809e0c3964ece58b0666ea1.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 diff --git a/res/window/window_terminal_search_hover.png b/res/window/window_terminal_search_hover.png new file mode 100644 index 0000000..6774a63 Binary files /dev/null and b/res/window/window_terminal_search_hover.png differ diff --git a/res/window/window_terminal_search_hover.png.import b/res/window/window_terminal_search_hover.png.import new file mode 100644 index 0000000..44c41d2 --- /dev/null +++ b/res/window/window_terminal_search_hover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyecj7i2qp2kk" +path="res://.godot/imported/window_terminal_search_hover.png-610fea477d33316a9ee2b9e0bb8fcc87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://res/window/window_terminal_search_hover.png" +dest_files=["res://.godot/imported/window_terminal_search_hover.png-610fea477d33316a9ee2b9e0bb8fcc87.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