From 1d2332d9bd0e3fdee8b1edbac60b42f3efae9d52 Mon Sep 17 00:00:00 2001 From: ToasterPanic Date: Sat, 6 Dec 2025 17:03:58 -0500 Subject: [PATCH] Navpanel, basic navigation to space station --- project.godot | 25 +++- scenes/enemy.tscn | 1 + scenes/game.tscn | 181 +++++++++++++++++++++----- scenes/navigation_marker.tscn | 8 ++ scripts/game.gd | 74 +++++++++++ scripts/global.gd | 1 + scripts/navigation_marker.gd | 7 + scripts/navigation_marker.gd.uid | 1 + textures/enemy_marker.png | Bin 0 -> 609 bytes textures/enemy_marker.png.import | 40 ++++++ textures/navigation_marker.png | Bin 0 -> 612 bytes textures/navigation_marker.png.import | 40 ++++++ 12 files changed, 344 insertions(+), 34 deletions(-) create mode 100644 scenes/navigation_marker.tscn create mode 100644 scripts/navigation_marker.gd create mode 100644 scripts/navigation_marker.gd.uid create mode 100644 textures/enemy_marker.png create mode 100644 textures/enemy_marker.png.import create mode 100644 textures/navigation_marker.png create mode 100644 textures/navigation_marker.png.import diff --git a/project.godot b/project.godot index 059d18b..bec7207 100644 --- a/project.godot +++ b/project.godot @@ -58,11 +58,28 @@ ui_select={ , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":3,"pressure":0.0,"pressed":false,"script":null) ] } +ui_left={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194319,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":13,"pressure":0.0,"pressed":false,"script":null) +] +} +ui_right={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194321,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":14,"pressure":0.0,"pressed":false,"script":null) +] +} ui_up={ "deadzone": 0.5, "events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194320,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"pressure":0.0,"pressed":false,"script":null) -, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":1,"axis_value":-1.0,"script":null) +] +} +ui_down={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194322,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":12,"pressure":0.0,"pressed":false,"script":null) ] } turn_left={ @@ -176,6 +193,12 @@ dialogue_continue={ , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":2,"pressure":0.0,"pressed":true,"script":null) ] } +navpanel={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194306,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":4,"pressure":0.0,"pressed":true,"script":null) +] +} [physics] diff --git a/scenes/enemy.tscn b/scenes/enemy.tscn index e1b9a95..3a68791 100644 --- a/scenes/enemy.tscn +++ b/scenes/enemy.tscn @@ -44,6 +44,7 @@ script = ExtResource("1_xwavj") [node name="Boost" type="AudioStreamPlayer" parent="."] stream = ExtResource("2_nenq2") +volume_db = -5.0 pitch_scale = 0.75 bus = &"Sound Effects" diff --git a/scenes/game.tscn b/scenes/game.tscn index ba7e77d..fe629bd 100644 --- a/scenes/game.tscn +++ b/scenes/game.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=33 format=4 uid="uid://bauklhpieuivd"] +[gd_scene load_steps=39 format=4 uid="uid://bauklhpieuivd"] [ext_resource type="Script" uid="uid://d0qswyhwbhdua" path="res://scripts/game.gd" id="1_u5sy4"] [ext_resource type="Texture2D" uid="uid://dtwo7g0ipc4k" path="res://textures/ship_1.png" id="1_uwrxv"] @@ -8,6 +8,8 @@ [ext_resource type="AudioStream" uid="uid://5tr30e1tmdp6" path="res://sounds/collision.mp3" id="2_lbhrr"] [ext_resource type="AudioStream" uid="uid://b6tyof2j3ytbv" path="res://sounds/concrete_halls.mp3" id="3_0tnpc"] [ext_resource type="AudioStream" uid="uid://b1ung55xg31l3" path="res://sounds/boost_finish.mp3" id="3_p57ef"] +[ext_resource type="AudioStream" uid="uid://cwidt34ehvre4" path="res://sounds/ui_select.mp3" id="4_5newe"] +[ext_resource type="PackedScene" uid="uid://gofibd3kwx3r" path="res://scenes/navigation_marker.tscn" id="5_264po"] [ext_resource type="AudioStream" uid="uid://y7lhonymtk3t" path="res://sounds/fire.mp3" id="8_vtaks"] [ext_resource type="Texture2D" uid="uid://dsdd1830ilu1" path="res://textures/navigation_ring.png" id="10_dinhu"] [ext_resource type="Texture2D" uid="uid://yfsqc4i52c6k" path="res://textures/space_station_1.png" id="12_dinhu"] @@ -17,6 +19,7 @@ [ext_resource type="Script" uid="uid://b2maxk5g6yb0i" path="res://addons/super_awesome_input_icons/classes/input_icon_texture_rect.gd" id="15_ca42v"] [ext_resource type="Theme" uid="uid://dtc7h6gpwpend" path="res://scenes/ui.tres" id="15_ir15t"] [ext_resource type="Script" uid="uid://dqiaioigmj5wb" path="res://scripts/pause_menu.gd" id="15_rysoc"] +[ext_resource type="FontFile" uid="uid://donsvh2l775rb" path="res://fonts/Doto.ttf" id="16_1kice"] [ext_resource type="PackedScene" uid="uid://cy4nbqbm222os" path="res://scenes/settings.tscn" id="17_ssvqc"] [sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_ir15t"] @@ -51,6 +54,10 @@ outline_color = Color(0, 0, 0, 1) bg_color = Color(1, 0, 0, 1) corner_detail = 1 +[sub_resource type="LabelSettings" id="LabelSettings_5newe"] +font = ExtResource("16_1kice") +font_size = 28 + [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ir15t"] bg_color = Color(0.5421658, 0.0015220869, 0.72708863, 1) corner_detail = 1 @@ -58,9 +65,13 @@ corner_detail = 1 [sub_resource type="LabelSettings" id="LabelSettings_ca42v"] outline_size = 2 -[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rysoc"] -bg_color = Color(1, 0, 0, 1) -corner_detail = 1 +[sub_resource type="LabelSettings" id="LabelSettings_e1j6l"] +font_size = 12 + +[sub_resource type="LabelSettings" id="LabelSettings_37s47"] + +[sub_resource type="LabelSettings" id="LabelSettings_bt5mj"] +font_size = 14 [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_264po"] bg_color = Color(0, 0, 0, 1) @@ -98,10 +109,12 @@ stream = ExtResource("3_0tnpc") volume_db = -10.0 bus = &"Music" +[node name="UiSelect" type="AudioStreamPlayer" parent="."] +stream = ExtResource("4_5newe") + [node name="Stars" type="Node2D" parent="."] -[node name="Navring" type="Sprite2D" parent="."] -texture = ExtResource("10_dinhu") +[node name="Unloadables" type="Node2D" parent="."] [node name="Orbits" type="Node2D" parent="."] @@ -129,7 +142,12 @@ shape = SubResource("RectangleShape2D_kvuet") position = Vector2(0, 245.5) rotation = 3.1415927 -[node name="Unloadables" type="Node2D" parent="."] +[node name="Navring" type="Sprite2D" parent="."] +position = Vector2(0, -9000) +texture = ExtResource("10_dinhu") + +[node name="NavigationMarker" parent="Navring" node_paths=PackedStringArray("destination") instance=ExtResource("5_264po")] +destination = NodePath("../../Orbits/SpaceStation1/SpaceStation1") [node name="Player" type="RigidBody2D" parent="."] position = Vector2(-78, -9043) @@ -138,6 +156,7 @@ script = ExtResource("1_yqjtg") [node name="Boost" type="AudioStreamPlayer" parent="Player"] stream = ExtResource("2_iywne") +volume_db = -5.0 bus = &"Sound Effects" [node name="BoostFinish" type="AudioStreamPlayer" parent="Player"] @@ -260,28 +279,37 @@ anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 -[node name="PanelContainer" type="PanelContainer" parent="UI/Control"] +[node name="Navpanel" type="PanelContainer" parent="UI/Control"] +visible = false layout_mode = 1 -anchors_preset = 2 -anchor_top = 1.0 -anchor_bottom = 1.0 -offset_top = -52.0 +anchors_preset = 4 +anchor_top = 0.5 +anchor_bottom = 0.5 +offset_top = -83.0 offset_right = 260.0 -grow_vertical = 0 +offset_bottom = 83.0 +grow_vertical = 2 theme = ExtResource("15_ir15t") -[node name="HFlowContainer" type="HFlowContainer" parent="UI/Control/PanelContainer"] +[node name="Start" type="HFlowContainer" parent="UI/Control/Navpanel"] layout_mode = 2 theme_override_constants/v_separation = 0 -[node name="Fuel" type="ProgressBar" parent="UI/Control/PanelContainer/HFlowContainer"] +[node name="Label3" type="Label" parent="UI/Control/Navpanel/Start"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "METERS" +label_settings = SubResource("LabelSettings_5newe") +horizontal_alignment = 1 + +[node name="Fuel" type="ProgressBar" parent="UI/Control/Navpanel/Start"] custom_minimum_size = Vector2(256, 24) layout_mode = 2 theme_override_styles/fill = SubResource("StyleBoxFlat_ir15t") value = 100.0 show_percentage = false -[node name="Label" type="Label" parent="UI/Control/PanelContainer/HFlowContainer/Fuel"] +[node name="Label" type="Label" parent="UI/Control/Navpanel/Start/Fuel"] layout_mode = 1 anchors_preset = 15 anchor_right = 1.0 @@ -293,25 +321,107 @@ label_settings = SubResource("LabelSettings_ca42v") horizontal_alignment = 1 vertical_alignment = 1 -[node name="Health" type="ProgressBar" parent="UI/Control/PanelContainer/HFlowContainer"] -custom_minimum_size = Vector2(256, 24) +[node name="Label2" type="Label" parent="UI/Control/Navpanel/Start"] layout_mode = 2 -theme_override_styles/fill = SubResource("StyleBoxFlat_rysoc") -value = 50.0 -fill_mode = 1 -show_percentage = false - -[node name="Label" type="Label" parent="UI/Control/PanelContainer/HFlowContainer/Health"] -layout_mode = 1 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -text = "+1000 HEALTH" -label_settings = SubResource("LabelSettings_ca42v") +size_flags_horizontal = 3 +text = "SYSTEM" +label_settings = SubResource("LabelSettings_5newe") horizontal_alignment = 1 -vertical_alignment = 1 + +[node name="Navigation" type="Button" parent="UI/Control/Navpanel/Start"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "navigation" + +[node name="Button2" type="Button" parent="UI/Control/Navpanel/Start"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "test" + +[node name="Cheery" type="Label" parent="UI/Control/Navpanel/Start"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "NAVMAX CHEERY V7.3.4.0." +label_settings = SubResource("LabelSettings_e1j6l") +horizontal_alignment = 1 +autowrap_mode = 3 + +[node name="Cheery2" type="Label" parent="UI/Control/Navpanel/Start"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "ALL RIGHTS RESERVED" +label_settings = SubResource("LabelSettings_e1j6l") +horizontal_alignment = 1 +autowrap_mode = 3 + +[node name="Navigation" type="HFlowContainer" parent="UI/Control/Navpanel"] +visible = false +layout_mode = 2 +theme_override_constants/v_separation = 0 + +[node name="Label3" type="Label" parent="UI/Control/Navpanel/Navigation"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "NAVIGATION" +label_settings = SubResource("LabelSettings_5newe") +horizontal_alignment = 1 + +[node name="CurrentRoute" type="Label" parent="UI/Control/Navpanel/Navigation"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "CURRENT ROUTE:" +label_settings = SubResource("LabelSettings_37s47") +horizontal_alignment = 1 +autowrap_mode = 3 + +[node name="Destination" type="Label" parent="UI/Control/Navpanel/Navigation"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "Space Station 1 (1000u)" +label_settings = SubResource("LabelSettings_bt5mj") +horizontal_alignment = 1 +autowrap_mode = 3 + +[node name="NewRoute" type="Button" parent="UI/Control/Navpanel/Navigation"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "new route" + +[node name="CancelRoute" type="Button" parent="UI/Control/Navpanel/Navigation"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "cancel route" + +[node name="NavpanelBack" type="Button" parent="UI/Control/Navpanel/Navigation"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "back" + +[node name="NavigationRoutes" type="HFlowContainer" parent="UI/Control/Navpanel"] +visible = false +layout_mode = 2 +theme_override_constants/v_separation = 0 + +[node name="Label3" type="Label" parent="UI/Control/Navpanel/NavigationRoutes"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "PICK ROUTE" +label_settings = SubResource("LabelSettings_5newe") +horizontal_alignment = 1 + +[node name="NavpanelBack" type="Button" parent="UI/Control/Navpanel/NavigationRoutes"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "back" [node name="PauseMenu" type="Panel" parent="UI/Control"] process_mode = 3 @@ -443,4 +553,9 @@ color = Color(1, 1, 1, 0) [connection signal="area_entered" from="Orbits/SpaceStation1/SpaceStation1/EnterHitbox" to="Orbits/SpaceStation1/SpaceStation1" method="_on_enter_hitbox_area_entered"] [connection signal="body_entered" from="Orbits/SpaceStation1/SpaceStation1/EnterHitbox" to="Orbits/SpaceStation1/SpaceStation1" method="_on_enter_hitbox_body_entered"] [connection signal="body_shape_entered" from="Player/Hitbox" to="Player" method="_on_hitbox_body_shape_entered"] +[connection signal="pressed" from="UI/Control/Navpanel/Start/Navigation" to="." method="_on_navigation_pressed"] +[connection signal="pressed" from="UI/Control/Navpanel/Navigation/NewRoute" to="." method="_on_new_route_pressed"] +[connection signal="pressed" from="UI/Control/Navpanel/Navigation/CancelRoute" to="." method="_on_cancel_route_pressed"] +[connection signal="pressed" from="UI/Control/Navpanel/Navigation/NavpanelBack" to="." method="_on_navpanel_back_pressed"] +[connection signal="pressed" from="UI/Control/Navpanel/NavigationRoutes/NavpanelBack" to="." method="_on_navpanel_back_pressed"] [connection signal="pressed" from="UI/Control/PauseMenu/Panel/Flow/Resume" to="UI/Control/PauseMenu" method="_on_resume_pressed"] diff --git a/scenes/navigation_marker.tscn b/scenes/navigation_marker.tscn new file mode 100644 index 0000000..c7e504a --- /dev/null +++ b/scenes/navigation_marker.tscn @@ -0,0 +1,8 @@ +[gd_scene load_steps=3 format=3 uid="uid://gofibd3kwx3r"] + +[ext_resource type="Texture2D" uid="uid://cfuclgb21yw7n" path="res://textures/navigation_marker.png" id="1_ux3yp"] +[ext_resource type="Script" uid="uid://ddwxm6i060srm" path="res://scripts/navigation_marker.gd" id="2_vk7ji"] + +[node name="NavigationMarker" type="Sprite2D"] +texture = ExtResource("1_ux3yp") +script = ExtResource("2_vk7ji") diff --git a/scripts/game.gd b/scripts/game.gd index 35c707c..4e518bf 100644 --- a/scripts/game.gd +++ b/scripts/game.gd @@ -14,6 +14,14 @@ var star_scene = preload("res://scenes/star.tscn") "SpaceStation1": $Orbits/SpaceStation1/SpaceStation1/ExitPoint } +@onready var navigation_points = [ + { + "name": "Space Station 1", + "id": "ss1", + "point": $Orbits/SpaceStation1/SpaceStation1 + } +] + func ship_health(health: float = 1000) -> void: $Player.health = health @@ -97,6 +105,33 @@ func _ready() -> void: func _process(delta: float) -> void: if get_tree().paused: return + + if global.stats.navigation_goal: + if not global.stats.navigation_goal.point: + global.stats.navigation_goal = null + else: + if !$Navring.has_node("NavigationMarker"): + var navigation_marker = preload("res://scenes/navigation_marker.tscn").instantiate() + + navigation_marker.destination = global.stats.navigation_goal.point + + $Navring.add_child(navigation_marker) + + if $UI/Control/Navpanel/Navigation.visible: + + $UI/Control/Navpanel/Navigation/CurrentRoute.visible = true + $UI/Control/Navpanel/Navigation/Destination.visible = true + + var goal_distance = (global.stats.navigation_goal.point.position - $Player.position).length() + + $UI/Control/Navpanel/Navigation/Destination.text = global.stats.navigation_goal.name + " (" + str(floori(goal_distance)) + "u)" + else: + if $Navring.has_node("NavigationMarker"): + $Navring.get_node("NavigationMarker").queue_free() + + if $UI/Control/Navpanel/Navigation.visible: + $UI/Control/Navpanel/Navigation/CurrentRoute.visible = false + $UI/Control/Navpanel/Navigation/Destination.visible = false $Navring.position = $Player.position @@ -172,6 +207,18 @@ func _process(delta: float) -> void: n.queue_free() elif abs(n_pos.y - player_chunk.y) > chunk_process_distance: n.queue_free() + +func _set_navpanel_menu(menu: String) -> void: + for n in $UI/Control/Navpanel.get_children(): + if n.get_name() == menu: + n.visible = true + + for o in n.get_children(): + if o.is_class("Button"): + o.grab_focus() + break + else: + n.visible = false func _input(event: InputEvent) -> void: if event.is_action_pressed("pause"): @@ -180,8 +227,35 @@ func _input(event: InputEvent) -> void: $UI/Control/PauseMenu/Panel/Flow/Resume.grab_focus() get_tree().paused = true + elif event.is_action_pressed("navpanel"): + if $UI/Control/Navpanel.visible: + $UI/Control/Navpanel.visible = false + else: + $UI/Control/Navpanel.visible = true + + _set_navpanel_menu("Start") func _on_tree_exiting() -> void: LimboConsole.unregister_command(ship_health) LimboConsole.unregister_command(summon_enemy) + + +func _on_navigation_pressed() -> void: + $UiSelect.play() + _set_navpanel_menu("Navigation") + + +func _on_navpanel_back_pressed() -> void: + $UiSelect.play() + _set_navpanel_menu("Start") + + +func _on_new_route_pressed() -> void: + $UiSelect.play() + global.stats.navigation_goal = navigation_points[0] + + +func _on_cancel_route_pressed() -> void: + $UiSelect.play() + global.stats.navigation_goal = null diff --git a/scripts/global.gd b/scripts/global.gd index 4dca4ed..bbf4c94 100644 --- a/scripts/global.gd +++ b/scripts/global.gd @@ -100,6 +100,7 @@ var default_stats = { "ship_position": Vector2(), "ship_rotation": 0, "story_progress": 1, + "navigation_goal": null, } var stats = default_stats.duplicate_deep() diff --git a/scripts/navigation_marker.gd b/scripts/navigation_marker.gd new file mode 100644 index 0000000..e95f819 --- /dev/null +++ b/scripts/navigation_marker.gd @@ -0,0 +1,7 @@ +extends Sprite2D + +@export var destination: Node2D = null + +func _process(delta: float) -> void: + look_at(destination.global_position) + rotation += deg_to_rad(90) diff --git a/scripts/navigation_marker.gd.uid b/scripts/navigation_marker.gd.uid new file mode 100644 index 0000000..d2b9430 --- /dev/null +++ b/scripts/navigation_marker.gd.uid @@ -0,0 +1 @@ +uid://ddwxm6i060srm diff --git a/textures/enemy_marker.png b/textures/enemy_marker.png new file mode 100644 index 0000000000000000000000000000000000000000..bfd12d39c76f1f4fb01f6f0cdeb353bf6ca77c88 GIT binary patch literal 609 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G!U;i$lZxy-8q?;3=B-to-U3d z6?5L+I-SLA$io`I|K)$ZWvpnErtjpB&XdmHOf^p45pz^=my~R2s$d=lU@T2b~S<(fH3g3(EPZzkNc4yH$Fhk`^lAAb4MCpuD8knJQW} literal 0 HcmV?d00001 diff --git a/textures/enemy_marker.png.import b/textures/enemy_marker.png.import new file mode 100644 index 0000000..5acaae1 --- /dev/null +++ b/textures/enemy_marker.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb8vib78fhpk1" +path="res://.godot/imported/enemy_marker.png-0a4635901a8d9931743f35bbc1887539.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://textures/enemy_marker.png" +dest_files=["res://.godot/imported/enemy_marker.png-0a4635901a8d9931743f35bbc1887539.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +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/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +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/textures/navigation_marker.png b/textures/navigation_marker.png new file mode 100644 index 0000000000000000000000000000000000000000..145149b3686458ca1f66f2de7827e5768a691716 GIT binary patch literal 612 zcmeAS@N?(olHy`uVBq!ia0y~yU<5K5893O0R7}x|G!U;i$lZxy-8q?;3=B+io-U3d z6?5L+a`a<1S;R{R1 z!S6+D_5Qt>`CXdfCFct6)d%)CbX<*Oea7-IG*xs4gVX9`S_X|Rp{=0_Y63xJkz6yL z%CuDN|HZ&EJ9NkI;_&~s4}`Eeh_Bw4$=ehbb6)Gjp1j#Vb8Mcl1%ys3+9^0CjUi<6 j(jUsrzgTe~DWM4f8|0zT literal 0 HcmV?d00001 diff --git a/textures/navigation_marker.png.import b/textures/navigation_marker.png.import new file mode 100644 index 0000000..6eb8f6e --- /dev/null +++ b/textures/navigation_marker.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfuclgb21yw7n" +path="res://.godot/imported/navigation_marker.png-5fa9547837f93dd7619ce383fd3f44b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://textures/navigation_marker.png" +dest_files=["res://.godot/imported/navigation_marker.png-5fa9547837f93dd7619ce383fd3f44b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +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/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +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