Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fabafbb35b | |||
| 0b0163a0ac | |||
| 5b3d6c9f19 |
@@ -6,6 +6,9 @@ extends Control
|
|||||||
@export var options_packed_scene : PackedScene
|
@export var options_packed_scene : PackedScene
|
||||||
@export var credits_packed_scene : PackedScene
|
@export var credits_packed_scene : PackedScene
|
||||||
|
|
||||||
|
@export var menu_context : GUIDEMappingContext
|
||||||
|
@export var back_action : GUIDEAction
|
||||||
|
|
||||||
var options_scene
|
var options_scene
|
||||||
var credits_scene
|
var credits_scene
|
||||||
var sub_menu
|
var sub_menu
|
||||||
@@ -73,7 +76,12 @@ func _ready() -> void:
|
|||||||
_add_or_hide_options()
|
_add_or_hide_options()
|
||||||
_add_or_hide_credits()
|
_add_or_hide_credits()
|
||||||
_hide_new_game_if_unset()
|
_hide_new_game_if_unset()
|
||||||
|
_setup_inputs()
|
||||||
|
|
||||||
|
func _setup_inputs() -> void:
|
||||||
|
GUIDE.enable_mapping_context(menu_context)
|
||||||
|
back_action.triggered.connect(_on_back_button_pressed)
|
||||||
|
|
||||||
func _on_new_game_button_pressed() -> void:
|
func _on_new_game_button_pressed() -> void:
|
||||||
new_game()
|
new_game()
|
||||||
|
|
||||||
|
|||||||
@@ -9,16 +9,19 @@ extends OverlaidMenu
|
|||||||
var popup_open : Node
|
var popup_open : Node
|
||||||
var previous_mapping_contexts : Array
|
var previous_mapping_contexts : Array
|
||||||
|
|
||||||
func on_enter_tree() -> void:
|
var is_listening_to_inputs = true
|
||||||
pass
|
|
||||||
#previous_mapping_contexts = GUIDE.get_enabled_mapping_contexts()
|
func _enter_tree() -> void:
|
||||||
#GUIDE.enable_mapping_context(menu_context)
|
super._enter_tree()
|
||||||
|
previous_mapping_contexts = GUIDE.get_enabled_mapping_contexts()
|
||||||
|
for previous_context in previous_mapping_contexts:
|
||||||
|
GUIDE.disable_mapping_context(previous_context)
|
||||||
|
GUIDE.enable_mapping_context(menu_context)
|
||||||
|
|
||||||
func on_exit_tree() -> void:
|
func _exit_tree() -> void:
|
||||||
pass
|
GUIDE.disable_mapping_context(menu_context)
|
||||||
#GUIDE.disable_mapping_context(menu_context)
|
for previous_context in previous_mapping_contexts:
|
||||||
#for previous_context in previous_mapping_contexts:
|
GUIDE.enable_mapping_context(previous_context)
|
||||||
#GUIDE.enable_mapping_context(previous_context)
|
|
||||||
|
|
||||||
func close_popup() -> void:
|
func close_popup() -> void:
|
||||||
if popup_open != null:
|
if popup_open != null:
|
||||||
@@ -43,10 +46,15 @@ func open_options_menu() -> void:
|
|||||||
var options_scene := options_packed_scene.instantiate()
|
var options_scene := options_packed_scene.instantiate()
|
||||||
add_child(options_scene)
|
add_child(options_scene)
|
||||||
_disable_focus.call_deferred()
|
_disable_focus.call_deferred()
|
||||||
|
is_listening_to_inputs = false
|
||||||
await options_scene.tree_exiting
|
await options_scene.tree_exiting
|
||||||
|
is_listening_to_inputs = true
|
||||||
_enable_focus.call_deferred()
|
_enable_focus.call_deferred()
|
||||||
|
|
||||||
func _handle_cancel_input() -> void:
|
func _handle_cancel_input() -> void:
|
||||||
|
if not is_listening_to_inputs:
|
||||||
|
return
|
||||||
|
|
||||||
if popup_open != null:
|
if popup_open != null:
|
||||||
close_popup()
|
close_popup()
|
||||||
else:
|
else:
|
||||||
@@ -68,6 +76,8 @@ func _ready() -> void:
|
|||||||
_hide_exit_for_web()
|
_hide_exit_for_web()
|
||||||
_hide_options_if_unset()
|
_hide_options_if_unset()
|
||||||
_hide_main_menu_if_unset()
|
_hide_main_menu_if_unset()
|
||||||
|
|
||||||
|
back_action.triggered.connect(_handle_cancel_input)
|
||||||
|
|
||||||
func _on_restart_button_pressed() -> void:
|
func _on_restart_button_pressed() -> void:
|
||||||
%ConfirmRestart.popup_centered()
|
%ConfirmRestart.popup_centered()
|
||||||
@@ -93,3 +103,5 @@ func _on_confirm_main_menu_confirmed() -> void:
|
|||||||
|
|
||||||
func _on_confirm_exit_confirmed() -> void:
|
func _on_confirm_exit_confirmed() -> void:
|
||||||
get_tree().quit()
|
get_tree().quit()
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ extends Control
|
|||||||
process_mode = PROCESS_MODE_INHERIT
|
process_mode = PROCESS_MODE_INHERIT
|
||||||
@export var makes_mouse_visible : bool = true
|
@export var makes_mouse_visible : bool = true
|
||||||
|
|
||||||
|
@export var back_action : GUIDEAction
|
||||||
|
|
||||||
signal menu_closing
|
signal menu_closing
|
||||||
|
|
||||||
var _initial_pause_state : bool = false
|
var _initial_pause_state : bool = false
|
||||||
@@ -32,13 +34,14 @@ func _handle_cancel_input() -> void:
|
|||||||
close()
|
close()
|
||||||
|
|
||||||
func _unhandled_input(event : InputEvent) -> void:
|
func _unhandled_input(event : InputEvent) -> void:
|
||||||
|
return
|
||||||
if event.is_action_pressed("ui_cancel"):
|
if event.is_action_pressed("ui_cancel"):
|
||||||
_handle_cancel_input()
|
_handle_cancel_input()
|
||||||
get_viewport().set_input_as_handled()
|
get_viewport().set_input_as_handled()
|
||||||
|
|
||||||
func _on_close_button_pressed() -> void:
|
func _on_close_button_pressed() -> void:
|
||||||
close()
|
close()
|
||||||
|
|
||||||
func _enter_tree() -> void:
|
func _enter_tree() -> void:
|
||||||
_scene_tree = get_tree()
|
_scene_tree = get_tree()
|
||||||
_initial_pause_state = _scene_tree.paused
|
_initial_pause_state = _scene_tree.paused
|
||||||
|
|||||||
@@ -12,3 +12,11 @@ extends OverlaidMenu
|
|||||||
if menu_scene:
|
if menu_scene:
|
||||||
var _instance = menu_scene.instantiate()
|
var _instance = menu_scene.instantiate()
|
||||||
%MenuContainer.add_child(_instance)
|
%MenuContainer.add_child(_instance)
|
||||||
|
|
||||||
|
func blocking_close() -> void:
|
||||||
|
get_viewport().set_input_as_handled()
|
||||||
|
super.close()
|
||||||
|
|
||||||
|
func _ready() -> void:
|
||||||
|
back_action.triggered.connect(blocking_close)
|
||||||
|
|
||||||
|
|||||||
@@ -7,15 +7,18 @@ extends Node
|
|||||||
@export var player : CharacterBody3D
|
@export var player : CharacterBody3D
|
||||||
|
|
||||||
@export_group("Inputs")
|
@export_group("Inputs")
|
||||||
@export var base_mode:GUIDEMappingContext
|
|
||||||
@export var pause:GUIDEAction
|
@export var pause:GUIDEAction
|
||||||
|
|
||||||
|
var menu_already_open = false
|
||||||
|
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
# GUIDE.enable_mapping_context(base_mode)
|
|
||||||
|
|
||||||
pause.triggered.connect(on_input_pause)
|
pause.triggered.connect(on_input_pause)
|
||||||
|
|
||||||
func on_input_pause():
|
func on_input_pause():
|
||||||
|
if menu_already_open:
|
||||||
|
return
|
||||||
|
|
||||||
|
menu_already_open = true
|
||||||
if not focused_viewport:
|
if not focused_viewport:
|
||||||
focused_viewport = get_viewport()
|
focused_viewport = get_viewport()
|
||||||
var _initial_focus_control = focused_viewport.gui_get_focus_owner()
|
var _initial_focus_control = focused_viewport.gui_get_focus_owner()
|
||||||
@@ -25,9 +28,6 @@ func on_input_pause():
|
|||||||
|
|
||||||
get_tree().current_scene.call_deferred("add_child", current_menu)
|
get_tree().current_scene.call_deferred("add_child", current_menu)
|
||||||
await current_menu.tree_exited
|
await current_menu.tree_exited
|
||||||
|
menu_already_open = false
|
||||||
if is_inside_tree() and _initial_focus_control:
|
if is_inside_tree() and _initial_focus_control:
|
||||||
_initial_focus_control.grab_focus()
|
_initial_focus_control.grab_focus()
|
||||||
|
|
||||||
func _unhandled_input(event : InputEvent) -> void:
|
|
||||||
if event.is_action_pressed("ui_cancel"):
|
|
||||||
pass
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ glow_enabled = true
|
|||||||
|
|
||||||
[node name="Player" parent="." instance=ExtResource("1_1s2y7")]
|
[node name="Player" parent="." instance=ExtResource("1_1s2y7")]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1.5)
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1.5)
|
||||||
|
TutorialDone = true
|
||||||
|
|
||||||
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
||||||
environment = SubResource("Environment_1bvp3")
|
environment = SubResource("Environment_1bvp3")
|
||||||
|
|||||||
383
maps/city.tscn
383
maps/city.tscn
@@ -1,13 +1,11 @@
|
|||||||
[gd_scene load_steps=42 format=3 uid="uid://dmkw8cmalm5k"]
|
[gd_scene load_steps=40 format=3 uid="uid://dmkw8cmalm5k"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://bei4nhkf8lwdo" path="res://player_controller/PlayerController.tscn" id="1_2vsi6"]
|
[ext_resource type="PackedScene" uid="uid://bei4nhkf8lwdo" path="res://player_controller/PlayerController.tscn" id="1_2vsi6"]
|
||||||
[ext_resource type="Script" uid="uid://blenis2y55fmg" path="res://tools/city_helpers.gd" id="1_qwuk2"]
|
[ext_resource type="Script" uid="uid://blenis2y55fmg" path="res://tools/city_helpers.gd" id="1_qwuk2"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ca4kkq3w8cd4n" path="res://assets/sky/sky_15_2k.png" id="2_ruo5i"]
|
[ext_resource type="Texture2D" uid="uid://ca4kkq3w8cd4n" path="res://assets/sky/sky_15_2k.png" id="2_ruo5i"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dkr80d2pi0d41" path="res://addons/guide/debugger/guide_debugger.tscn" id="2_uet8a"]
|
[ext_resource type="PackedScene" uid="uid://dkr80d2pi0d41" path="res://addons/guide/debugger/guide_debugger.tscn" id="2_uet8a"]
|
||||||
[ext_resource type="Texture2D" uid="uid://7kcmi16gedd0" path="res://assets/LD-0001.png" id="3_ruo5i"]
|
|
||||||
[ext_resource type="Script" uid="uid://cyh0d64pfygbl" path="res://addons/maaacks_game_template/base/scripts/pause_menu_controller.gd" id="7_ukfuy"]
|
[ext_resource type="Script" uid="uid://cyh0d64pfygbl" path="res://addons/maaacks_game_template/base/scripts/pause_menu_controller.gd" id="7_ukfuy"]
|
||||||
[ext_resource type="PackedScene" uid="uid://ccqajqchiw4xu" path="res://menus/scenes/overlaid_menus/pause_menu.tscn" id="8_wctvs"]
|
[ext_resource type="PackedScene" uid="uid://ccqajqchiw4xu" path="res://menus/scenes/overlaid_menus/pause_menu.tscn" id="8_wctvs"]
|
||||||
[ext_resource type="Resource" uid="uid://bl5crtu1gkrtr" path="res://systems/inputs/base_mode/base_mode.tres" id="9_eca4n"]
|
|
||||||
[ext_resource type="PackedScene" uid="uid://bkcsjsk2ciff" path="res://addons/maaacks_game_template/base/scenes/music_players/background_music_player.tscn" id="9_i2xii"]
|
[ext_resource type="PackedScene" uid="uid://bkcsjsk2ciff" path="res://addons/maaacks_game_template/base/scenes/music_players/background_music_player.tscn" id="9_i2xii"]
|
||||||
[ext_resource type="Resource" uid="uid://dgluj0ql5vth7" path="res://systems/inputs/base_mode/pause.tres" id="10_0ari0"]
|
[ext_resource type="Resource" uid="uid://dgluj0ql5vth7" path="res://systems/inputs/base_mode/pause.tres" id="10_0ari0"]
|
||||||
[ext_resource type="AudioStream" uid="uid://f8cvr5s041ej" path="res://assets/audio/ambiance/637083__nox_sound__ambiance_nature_night_cricket_calm_loop_stereo.wav" id="10_eca4n"]
|
[ext_resource type="AudioStream" uid="uid://f8cvr5s041ej" path="res://assets/audio/ambiance/637083__nox_sound__ambiance_nature_night_cricket_calm_loop_stereo.wav" id="10_eca4n"]
|
||||||
@@ -26,32 +24,8 @@
|
|||||||
[ext_resource type="Texture2D" uid="uid://nrhxjdpuje3f" path="res://assets/ui/input-prompts/Xbox Series/Vector/xbox_lt_outline.svg" id="20_crf87"]
|
[ext_resource type="Texture2D" uid="uid://nrhxjdpuje3f" path="res://assets/ui/input-prompts/Xbox Series/Vector/xbox_lt_outline.svg" id="20_crf87"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dyjvbsvbriii4" path="res://assets/ui/input-prompts/Xbox Series/Vector/xbox_rb_outline.svg" id="23_p287n"]
|
[ext_resource type="Texture2D" uid="uid://dyjvbsvbriii4" path="res://assets/ui/input-prompts/Xbox Series/Vector/xbox_rb_outline.svg" id="23_p287n"]
|
||||||
|
|
||||||
[sub_resource type="PanoramaSkyMaterial" id="PanoramaSkyMaterial_feb1n"]
|
[sub_resource type="LabelSettings" id="LabelSettings_2k3fr"]
|
||||||
panorama = ExtResource("2_ruo5i")
|
font_size = 30
|
||||||
|
|
||||||
[sub_resource type="Sky" id="Sky_h2yge"]
|
|
||||||
sky_material = SubResource("PanoramaSkyMaterial_feb1n")
|
|
||||||
|
|
||||||
[sub_resource type="Environment" id="Environment_1bvp3"]
|
|
||||||
background_mode = 2
|
|
||||||
sky = SubResource("Sky_h2yge")
|
|
||||||
ambient_light_source = 3
|
|
||||||
reflected_light_source = 2
|
|
||||||
tonemap_mode = 4
|
|
||||||
ssao_enabled = true
|
|
||||||
ssil_enabled = true
|
|
||||||
sdfgi_enabled = true
|
|
||||||
sdfgi_use_occlusion = true
|
|
||||||
glow_enabled = true
|
|
||||||
fog_enabled = true
|
|
||||||
fog_light_color = Color(0.9955967, 0.83634025, 0.69151855, 1)
|
|
||||||
fog_sun_scatter = 0.5
|
|
||||||
fog_density = 0.002
|
|
||||||
fog_sky_affect = 0.184
|
|
||||||
volumetric_fog_density = 0.004
|
|
||||||
volumetric_fog_emission = Color(1, 1, 1, 1)
|
|
||||||
volumetric_fog_anisotropy = 0.6
|
|
||||||
adjustment_enabled = true
|
|
||||||
|
|
||||||
[sub_resource type="BoxShape3D" id="BoxShape3D_t0d86"]
|
[sub_resource type="BoxShape3D" id="BoxShape3D_t0d86"]
|
||||||
size = Vector3(14, 15.5, 26)
|
size = Vector3(14, 15.5, 26)
|
||||||
@@ -86,182 +60,47 @@ size = Vector3(11.5, 9, 4.5)
|
|||||||
[sub_resource type="BoxShape3D" id="BoxShape3D_pxspk"]
|
[sub_resource type="BoxShape3D" id="BoxShape3D_pxspk"]
|
||||||
size = Vector3(11.5, 9, 4.5)
|
size = Vector3(11.5, 9, 4.5)
|
||||||
|
|
||||||
[sub_resource type="LabelSettings" id="LabelSettings_2k3fr"]
|
[sub_resource type="PanoramaSkyMaterial" id="PanoramaSkyMaterial_feb1n"]
|
||||||
font_size = 30
|
panorama = ExtResource("2_ruo5i")
|
||||||
|
|
||||||
|
[sub_resource type="Sky" id="Sky_h2yge"]
|
||||||
|
sky_material = SubResource("PanoramaSkyMaterial_feb1n")
|
||||||
|
|
||||||
|
[sub_resource type="Environment" id="Environment_1bvp3"]
|
||||||
|
background_mode = 2
|
||||||
|
sky = SubResource("Sky_h2yge")
|
||||||
|
ambient_light_source = 3
|
||||||
|
reflected_light_source = 2
|
||||||
|
tonemap_mode = 4
|
||||||
|
ssao_enabled = true
|
||||||
|
ssil_enabled = true
|
||||||
|
sdfgi_enabled = true
|
||||||
|
sdfgi_use_occlusion = true
|
||||||
|
glow_enabled = true
|
||||||
|
fog_enabled = true
|
||||||
|
fog_light_color = Color(0.9955967, 0.83634025, 0.69151855, 1)
|
||||||
|
fog_sun_scatter = 0.5
|
||||||
|
fog_density = 0.002
|
||||||
|
fog_sky_affect = 0.184
|
||||||
|
volumetric_fog_density = 0.004
|
||||||
|
volumetric_fog_emission = Color(1, 1, 1, 1)
|
||||||
|
volumetric_fog_anisotropy = 0.6
|
||||||
|
adjustment_enabled = true
|
||||||
|
|
||||||
[sub_resource type="BoxMesh" id="BoxMesh_p287n"]
|
[sub_resource type="BoxMesh" id="BoxMesh_p287n"]
|
||||||
|
|
||||||
[node name="Main" type="Node3D"]
|
[node name="Main" type="Node3D"]
|
||||||
script = ExtResource("1_qwuk2")
|
script = ExtResource("1_qwuk2")
|
||||||
|
|
||||||
[node name="Player" parent="." node_paths=PackedStringArray("TutorialWeaponTarget") instance=ExtResource("1_2vsi6")]
|
[node name="BackgroundMusicPlayer" parent="." instance=ExtResource("9_i2xii")]
|
||||||
transform = Transform3D(0.054514527, 0, -0.9985129, 0, 1, 0, 0.9985129, 0, 0.054514527, -6, 75.5, -13.5)
|
stream = ExtResource("10_eca4n")
|
||||||
collision_layer = 17
|
|
||||||
TutorialWeaponTarget = NodePath("../PlacedTutorialWeapon/WeaponLocationTarget")
|
|
||||||
TutorialDone = true
|
|
||||||
AccelerationAir = 1.5
|
|
||||||
|
|
||||||
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
|
||||||
environment = SubResource("Environment_1bvp3")
|
|
||||||
|
|
||||||
[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
|
|
||||||
transform = Transform3D(-0.78043425, 0.15240018, 0.60637933, 0.17673612, -0.8765135, 0.44775894, 0.5997381, 0.4566158, 0.6571267, 0, 0, 0)
|
|
||||||
light_color = Color(0.99999934, 0.76777613, 0.6549227, 1)
|
|
||||||
light_energy = 2.0
|
|
||||||
light_volumetric_fog_energy = 2.0
|
|
||||||
shadow_enabled = true
|
|
||||||
shadow_opacity = 0.95
|
|
||||||
shadow_blur = 2.435
|
|
||||||
|
|
||||||
[node name="DebugLayer" type="CanvasLayer" parent="."]
|
|
||||||
|
|
||||||
[node name="GuideDebugger" parent="DebugLayer" instance=ExtResource("2_uet8a")]
|
|
||||||
visible = false
|
|
||||||
|
|
||||||
[node name="Map" type="Sprite3D" parent="."]
|
|
||||||
transform = Transform3D(-3.278354e-07, -7.5, -3.278354e-08, 0, -3.278354e-07, 0.75, -7.5, 3.278354e-07, 1.4330142e-15, 7.1878185, 8.602432, -175.5159)
|
|
||||||
visible = false
|
|
||||||
texture = ExtResource("3_ruo5i")
|
|
||||||
|
|
||||||
[node name="Guard tower" parent="." instance=ExtResource("11_wctvs")]
|
|
||||||
transform = Transform3D(0.09033705, 0, 0.99591124, 0, 1, 0, -0.99591124, 0, 0.09033705, -4.6100636, 1.5, 0.5658741)
|
|
||||||
|
|
||||||
[node name="Water" parent="." instance=ExtResource("12_i2xii")]
|
|
||||||
transform = Transform3D(10000, 0, 0, 0, 1, 0, 0, 0, 10000, 0, 4.03932, -186.25941)
|
|
||||||
|
|
||||||
[node name="PauseMenuController" type="Node" parent="." node_paths=PackedStringArray("player")]
|
[node name="PauseMenuController" type="Node" parent="." node_paths=PackedStringArray("player")]
|
||||||
script = ExtResource("7_ukfuy")
|
script = ExtResource("7_ukfuy")
|
||||||
pause_menu_packed = ExtResource("8_wctvs")
|
pause_menu_packed = ExtResource("8_wctvs")
|
||||||
player = NodePath("../Player")
|
player = NodePath("../Player")
|
||||||
base_mode = ExtResource("9_eca4n")
|
|
||||||
pause = ExtResource("10_0ari0")
|
pause = ExtResource("10_0ari0")
|
||||||
|
|
||||||
[node name="BackgroundMusicPlayer" parent="." instance=ExtResource("9_i2xii")]
|
|
||||||
stream = ExtResource("10_eca4n")
|
|
||||||
|
|
||||||
[node name="Lift" parent="." instance=ExtResource("13_eca4n")]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.08715573, 0, 1, 0, 0.08715573, 0, 0.9961947, -4.593, 1.618, 0.583)
|
|
||||||
end_location = Vector3(-4.593, 116.11, 0.583)
|
|
||||||
lift_time = 8.0
|
|
||||||
|
|
||||||
[node name="PlacedTutorialWeapon" type="MeshInstance3D" parent="."]
|
|
||||||
transform = Transform3D(-2, 3.019916e-07, 0, -3.019916e-07, -2, 0, 0, 0, 2, -17.904, -79.265, 145.317)
|
|
||||||
mesh = ExtResource("14_0ari0")
|
|
||||||
script = ExtResource("15_165wb")
|
|
||||||
|
|
||||||
[node name="SpotLight3D" type="SpotLight3D" parent="PlacedTutorialWeapon"]
|
|
||||||
transform = Transform3D(1, -1.509958e-07, 6.600236e-15, 0, -4.371139e-08, -1, 1.509958e-07, 1, -4.371139e-08, 0, -2.3931274, 0)
|
|
||||||
spot_range = 9.85
|
|
||||||
spot_attenuation = 0.46
|
|
||||||
spot_angle = 15.0
|
|
||||||
|
|
||||||
[node name="WeaponLocationTarget" type="Marker3D" parent="PlacedTutorialWeapon"]
|
|
||||||
|
|
||||||
[node name="TutoTriggers" type="Node3D" parent="."]
|
|
||||||
transform = Transform3D(0.054514527, 0, -0.9985129, 0, 1, 0, 0.9985129, 0, 0.054514527, -0.78573227, -132.74933, 116.65933)
|
|
||||||
|
|
||||||
[node name="TriggerTutoMove" type="Area3D" parent="TutoTriggers"]
|
|
||||||
collision_layer = 0
|
|
||||||
collision_mask = 16
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoMove"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.087155946, 0, 1, 0, 0.087155946, 0, 0.9961947, 1.1144943, 6.5, 1.6032357)
|
|
||||||
shape = SubResource("BoxShape3D_t0d86")
|
|
||||||
|
|
||||||
[node name="TriggerTutoMantle" type="Area3D" parent="TutoTriggers"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, -10.4557495, 0, -28.61254)
|
|
||||||
collision_layer = 0
|
|
||||||
collision_mask = 16
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoMantle"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, 0.19611359, 7, -2.241436)
|
|
||||||
shape = SubResource("BoxShape3D_p287n")
|
|
||||||
|
|
||||||
[node name="TutoJump" parent="TutoTriggers" instance=ExtResource("16_qwuk2")]
|
|
||||||
transform = Transform3D(0.14133328, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133328, -0.32653046, 1.2493286, -50.374645)
|
|
||||||
first_input_texture = ExtResource("16_2k3fr")
|
|
||||||
second_input_texture = ExtResource("16_2k3fr")
|
|
||||||
tuto_text = "Double jump"
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TutoJump"]
|
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.49998856, 6.25, 3.499977)
|
|
||||||
shape = SubResource("BoxShape3D_5hbxb")
|
|
||||||
|
|
||||||
[node name="TutoDash" parent="TutoTriggers" instance=ExtResource("16_qwuk2")]
|
|
||||||
transform = Transform3D(0.14133328, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133328, 19.967693, 1.2493286, -47.47731)
|
|
||||||
first_input_texture = ExtResource("16_crf87")
|
|
||||||
second_input_texture = ExtResource("19_efsse")
|
|
||||||
tuto_text = "Dash"
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TutoDash"]
|
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.49999237, 6.25, 4.2500153)
|
|
||||||
shape = SubResource("BoxShape3D_6gj1x")
|
|
||||||
|
|
||||||
[node name="TriggerTutoWallJump" type="Area3D" parent="TutoTriggers"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, 38.60766, 0, -28.437609)
|
|
||||||
collision_layer = 0
|
|
||||||
collision_mask = 16
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoWallJump"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, -1.9546509, 20.75, 10.8709755)
|
|
||||||
shape = SubResource("BoxShape3D_x7fl1")
|
|
||||||
|
|
||||||
[node name="TriggerTutoWallJump2" type="Area3D" parent="TutoTriggers"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, 15.983452, 0, 37.426994)
|
|
||||||
collision_layer = 0
|
|
||||||
collision_mask = 16
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoWallJump2"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, 2.3256226, 21.75, 4.9715767)
|
|
||||||
shape = SubResource("BoxShape3D_3wccx")
|
|
||||||
|
|
||||||
[node name="TutoDash2" parent="TutoTriggers" instance=ExtResource("16_qwuk2")]
|
|
||||||
transform = Transform3D(0.14133325, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133325, 28.885735, 27.749329, 25.360323)
|
|
||||||
first_input_texture = ExtResource("16_crf87")
|
|
||||||
second_input_texture = ExtResource("19_efsse")
|
|
||||||
complex_input_text = "in air"
|
|
||||||
tuto_text = "Dash"
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TutoDash2"]
|
|
||||||
transform = Transform3D(1.0000031, 0, -4.917383e-07, 0, 1, 0, 4.917383e-07, 0, 1.0000031, 5.500023, 5, 0)
|
|
||||||
shape = SubResource("BoxShape3D_hmdts")
|
|
||||||
|
|
||||||
[node name="TriggerTutoWeaponThrow" type="Area3D" parent="TutoTriggers"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, 4.428787, 58, 19.770819)
|
|
||||||
collision_layer = 0
|
|
||||||
collision_mask = 16
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoWeaponThrow"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, 4.4208603, 7, -4.632329)
|
|
||||||
shape = SubResource("BoxShape3D_lnjrw")
|
|
||||||
|
|
||||||
[node name="TriggerTutoEnjoy" type="Area3D" parent="TutoTriggers"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, -120.81145, 214.5, 2.417603)
|
|
||||||
collision_layer = 0
|
|
||||||
collision_mask = 16
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoEnjoy"]
|
|
||||||
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, 3.9663503, 5.5, -5.174009)
|
|
||||||
shape = SubResource("BoxShape3D_3w3wd")
|
|
||||||
|
|
||||||
[node name="TutorialDoneArea" type="Area3D" parent="TutoTriggers"]
|
|
||||||
transform = Transform3D(0.14133324, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133324, 7.9436035, 53.74933, 16.672102)
|
|
||||||
collision_layer = 0
|
|
||||||
collision_mask = 16
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TutorialDoneArea"]
|
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.7500105, 4, 0.7499695)
|
|
||||||
shape = SubResource("BoxShape3D_lu3yt")
|
|
||||||
|
|
||||||
[node name="WeaponRetrieved" type="Area3D" parent="TutoTriggers"]
|
|
||||||
transform = Transform3D(0.14133324, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133324, 27.3601, 53.74933, 18.733648)
|
|
||||||
collision_layer = 0
|
|
||||||
collision_mask = 16
|
|
||||||
|
|
||||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/WeaponRetrieved"]
|
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.7500105, 4, 0.7499695)
|
|
||||||
shape = SubResource("BoxShape3D_pxspk")
|
|
||||||
|
|
||||||
[node name="TutorialController" type="Control" parent="."]
|
[node name="TutorialController" type="Control" parent="."]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
@@ -270,6 +109,7 @@ anchor_right = 1.0
|
|||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
|
mouse_filter = 1
|
||||||
script = ExtResource("16_efsse")
|
script = ExtResource("16_efsse")
|
||||||
tuto_got_sword_packed = ExtResource("17_t0d86")
|
tuto_got_sword_packed = ExtResource("17_t0d86")
|
||||||
|
|
||||||
@@ -418,6 +258,159 @@ layout_mode = 2
|
|||||||
text = "Enjoy this little playground!"
|
text = "Enjoy this little playground!"
|
||||||
label_settings = SubResource("LabelSettings_2k3fr")
|
label_settings = SubResource("LabelSettings_2k3fr")
|
||||||
|
|
||||||
|
[node name="TutoTriggers" type="Node3D" parent="."]
|
||||||
|
transform = Transform3D(0.054514527, 0, -0.9985129, 0, 1, 0, 0.9985129, 0, 0.054514527, -0.78573227, -132.74933, 116.65933)
|
||||||
|
|
||||||
|
[node name="TriggerTutoMove" type="Area3D" parent="TutoTriggers"]
|
||||||
|
collision_layer = 0
|
||||||
|
collision_mask = 16
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoMove"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.087155946, 0, 1, 0, 0.087155946, 0, 0.9961947, 1.1144943, 6.5, 1.6032357)
|
||||||
|
shape = SubResource("BoxShape3D_t0d86")
|
||||||
|
|
||||||
|
[node name="TriggerTutoMantle" type="Area3D" parent="TutoTriggers"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, -10.4557495, 0, -28.61254)
|
||||||
|
collision_layer = 0
|
||||||
|
collision_mask = 16
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoMantle"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, 0.19611359, 7, -2.241436)
|
||||||
|
shape = SubResource("BoxShape3D_p287n")
|
||||||
|
|
||||||
|
[node name="TutoJump" parent="TutoTriggers" instance=ExtResource("16_qwuk2")]
|
||||||
|
transform = Transform3D(0.14133328, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133328, -0.32653046, 1.2493286, -50.374645)
|
||||||
|
first_input_texture = ExtResource("16_2k3fr")
|
||||||
|
second_input_texture = ExtResource("16_2k3fr")
|
||||||
|
tuto_text = "Double jump"
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TutoJump"]
|
||||||
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.49998856, 6.25, 3.499977)
|
||||||
|
shape = SubResource("BoxShape3D_5hbxb")
|
||||||
|
|
||||||
|
[node name="TutoDash" parent="TutoTriggers" instance=ExtResource("16_qwuk2")]
|
||||||
|
transform = Transform3D(0.14133328, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133328, 19.967693, 1.2493286, -47.47731)
|
||||||
|
first_input_texture = ExtResource("16_crf87")
|
||||||
|
second_input_texture = ExtResource("19_efsse")
|
||||||
|
tuto_text = "Dash"
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TutoDash"]
|
||||||
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.49999237, 6.25, 4.2500153)
|
||||||
|
shape = SubResource("BoxShape3D_6gj1x")
|
||||||
|
|
||||||
|
[node name="TriggerTutoWallJump" type="Area3D" parent="TutoTriggers"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, 38.60766, 0, -28.437609)
|
||||||
|
collision_layer = 0
|
||||||
|
collision_mask = 16
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoWallJump"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, -1.9546509, 20.75, 10.8709755)
|
||||||
|
shape = SubResource("BoxShape3D_x7fl1")
|
||||||
|
|
||||||
|
[node name="TriggerTutoWallJump2" type="Area3D" parent="TutoTriggers"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, 15.983452, 0, 37.426994)
|
||||||
|
collision_layer = 0
|
||||||
|
collision_mask = 16
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoWallJump2"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, 2.3256226, 21.75, 4.9715767)
|
||||||
|
shape = SubResource("BoxShape3D_3wccx")
|
||||||
|
|
||||||
|
[node name="TutoDash2" parent="TutoTriggers" instance=ExtResource("16_qwuk2")]
|
||||||
|
transform = Transform3D(0.14133325, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133325, 28.885735, 27.749329, 25.360323)
|
||||||
|
first_input_texture = ExtResource("16_crf87")
|
||||||
|
second_input_texture = ExtResource("19_efsse")
|
||||||
|
complex_input_text = "in air"
|
||||||
|
tuto_text = "Dash"
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TutoDash2"]
|
||||||
|
transform = Transform3D(1.0000031, 0, -4.917383e-07, 0, 1, 0, 4.917383e-07, 0, 1.0000031, 5.500023, 5, 0)
|
||||||
|
shape = SubResource("BoxShape3D_hmdts")
|
||||||
|
|
||||||
|
[node name="TriggerTutoWeaponThrow" type="Area3D" parent="TutoTriggers"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, 4.428787, 58, 19.770819)
|
||||||
|
collision_layer = 0
|
||||||
|
collision_mask = 16
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoWeaponThrow"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, 4.4208603, 7, -4.632329)
|
||||||
|
shape = SubResource("BoxShape3D_lnjrw")
|
||||||
|
|
||||||
|
[node name="TriggerTutoEnjoy" type="Area3D" parent="TutoTriggers"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.087155744, 0, 1, 0, 0.087155744, 0, 0.9961947, -120.81145, 214.5, 2.417603)
|
||||||
|
collision_layer = 0
|
||||||
|
collision_mask = 16
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TriggerTutoEnjoy"]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.08715595, 0, 1, 0, 0.08715595, 0, 0.9961947, 3.9663503, 5.5, -5.174009)
|
||||||
|
shape = SubResource("BoxShape3D_3w3wd")
|
||||||
|
|
||||||
|
[node name="TutorialDoneArea" type="Area3D" parent="TutoTriggers"]
|
||||||
|
transform = Transform3D(0.14133324, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133324, 7.9436035, 53.74933, 16.672102)
|
||||||
|
collision_layer = 0
|
||||||
|
collision_mask = 16
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/TutorialDoneArea"]
|
||||||
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.7500105, 4, 0.7499695)
|
||||||
|
shape = SubResource("BoxShape3D_lu3yt")
|
||||||
|
|
||||||
|
[node name="WeaponRetrieved" type="Area3D" parent="TutoTriggers"]
|
||||||
|
transform = Transform3D(0.14133324, 0, 0.98996216, 0, 1, 0, -0.98996216, 0, 0.14133324, 27.3601, 53.74933, 18.733648)
|
||||||
|
collision_layer = 0
|
||||||
|
collision_mask = 16
|
||||||
|
|
||||||
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="TutoTriggers/WeaponRetrieved"]
|
||||||
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.7500105, 4, 0.7499695)
|
||||||
|
shape = SubResource("BoxShape3D_pxspk")
|
||||||
|
|
||||||
|
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
||||||
|
environment = SubResource("Environment_1bvp3")
|
||||||
|
|
||||||
|
[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
|
||||||
|
transform = Transform3D(-0.7804346, 0.15240021, 0.60637945, 0.1767362, -0.87651366, 0.4477591, 0.5997384, 0.4566159, 0.6571269, 0, 0, 0)
|
||||||
|
light_color = Color(0.99999934, 0.76777613, 0.6549227, 1)
|
||||||
|
light_energy = 2.0
|
||||||
|
light_volumetric_fog_energy = 2.0
|
||||||
|
shadow_enabled = true
|
||||||
|
shadow_opacity = 0.95
|
||||||
|
shadow_blur = 2.435
|
||||||
|
|
||||||
|
[node name="Player" parent="." node_paths=PackedStringArray("TutorialWeaponTarget") instance=ExtResource("1_2vsi6")]
|
||||||
|
transform = Transform3D(0.054514527, 0, -0.9985129, 0, 1, 0, 0.9985129, 0, 0.054514527, -6, 75.5, -13.5)
|
||||||
|
collision_layer = 17
|
||||||
|
TutorialWeaponTarget = NodePath("../PlacedTutorialWeapon/WeaponLocationTarget")
|
||||||
|
TutorialDone = true
|
||||||
|
AccelerationAir = 1.5
|
||||||
|
|
||||||
|
[node name="DebugLayer" type="CanvasLayer" parent="."]
|
||||||
|
|
||||||
|
[node name="GuideDebugger" parent="DebugLayer" instance=ExtResource("2_uet8a")]
|
||||||
|
visible = false
|
||||||
|
|
||||||
|
[node name="Guard tower" parent="." instance=ExtResource("11_wctvs")]
|
||||||
|
transform = Transform3D(0.09033705, 0, 0.99591124, 0, 1, 0, -0.99591124, 0, 0.09033705, -4.6100636, 1.5, 0.5658741)
|
||||||
|
|
||||||
|
[node name="Water" parent="." instance=ExtResource("12_i2xii")]
|
||||||
|
transform = Transform3D(10000, 0, 0, 0, 1, 0, 0, 0, 10000, 0, 4.03932, -186.25941)
|
||||||
|
|
||||||
|
[node name="Lift" parent="." instance=ExtResource("13_eca4n")]
|
||||||
|
transform = Transform3D(0.9961947, 0, -0.08715573, 0, 1, 0, 0.08715573, 0, 0.9961947, -4.593, 1.618, 0.583)
|
||||||
|
end_location = Vector3(-4.593, 116.11, 0.583)
|
||||||
|
lift_time = 8.0
|
||||||
|
|
||||||
|
[node name="PlacedTutorialWeapon" type="MeshInstance3D" parent="."]
|
||||||
|
transform = Transform3D(-2, 3.019916e-07, 0, -3.019916e-07, -2, 0, 0, 0, 2, -17.904, -79.265, 145.317)
|
||||||
|
mesh = ExtResource("14_0ari0")
|
||||||
|
script = ExtResource("15_165wb")
|
||||||
|
|
||||||
|
[node name="SpotLight3D" type="SpotLight3D" parent="PlacedTutorialWeapon"]
|
||||||
|
transform = Transform3D(1, -1.509958e-07, 6.600236e-15, 0, -4.371139e-08, -1, 1.509958e-07, 1, -4.371139e-08, 0, -2.3931274, 0)
|
||||||
|
spot_range = 9.85
|
||||||
|
spot_attenuation = 0.46
|
||||||
|
spot_angle = 15.0
|
||||||
|
|
||||||
|
[node name="WeaponLocationTarget" type="Marker3D" parent="PlacedTutorialWeapon"]
|
||||||
|
|
||||||
[node name="LightLeakBlockers" type="Node3D" parent="."]
|
[node name="LightLeakBlockers" type="Node3D" parent="."]
|
||||||
|
|
||||||
[node name="MeshInstance3D" type="MeshInstance3D" parent="LightLeakBlockers"]
|
[node name="MeshInstance3D" type="MeshInstance3D" parent="LightLeakBlockers"]
|
||||||
@@ -444,6 +437,7 @@ spot_range = 47.233
|
|||||||
spot_angle = 18.85
|
spot_angle = 18.85
|
||||||
spot_angle_attenuation = 10.556052
|
spot_angle_attenuation = 10.556052
|
||||||
|
|
||||||
|
[connection signal="timeout" from="TutorialController/WaitToShowBlockingTuto" to="TutorialController" method="_show_weapon_tutorial"]
|
||||||
[connection signal="body_exited" from="TutoTriggers/TriggerTutoMove" to="TutorialController" method="hide_tutorials"]
|
[connection signal="body_exited" from="TutoTriggers/TriggerTutoMove" to="TutorialController" method="hide_tutorials"]
|
||||||
[connection signal="body_entered" from="TutoTriggers/TriggerTutoMantle" to="TutorialController" method="_on_tuto_mantle_body_entered"]
|
[connection signal="body_entered" from="TutoTriggers/TriggerTutoMantle" to="TutorialController" method="_on_tuto_mantle_body_entered"]
|
||||||
[connection signal="body_exited" from="TutoTriggers/TriggerTutoMantle" to="TutorialController" method="hide_tutorials"]
|
[connection signal="body_exited" from="TutoTriggers/TriggerTutoMantle" to="TutorialController" method="hide_tutorials"]
|
||||||
@@ -455,9 +449,8 @@ spot_angle_attenuation = 10.556052
|
|||||||
[connection signal="body_exited" from="TutoTriggers/TriggerTutoWeaponThrow" to="TutorialController" method="hide_tutorials"]
|
[connection signal="body_exited" from="TutoTriggers/TriggerTutoWeaponThrow" to="TutorialController" method="hide_tutorials"]
|
||||||
[connection signal="body_entered" from="TutoTriggers/TriggerTutoEnjoy" to="TutorialController" method="_on_tuto_enjoy_body_entered"]
|
[connection signal="body_entered" from="TutoTriggers/TriggerTutoEnjoy" to="TutorialController" method="_on_tuto_enjoy_body_entered"]
|
||||||
[connection signal="body_exited" from="TutoTriggers/TriggerTutoEnjoy" to="TutorialController" method="hide_tutorials"]
|
[connection signal="body_exited" from="TutoTriggers/TriggerTutoEnjoy" to="TutorialController" method="hide_tutorials"]
|
||||||
[connection signal="body_entered" from="TutoTriggers/TutorialDoneArea" to="Player" method="OnTutorialDone"]
|
|
||||||
[connection signal="body_entered" from="TutoTriggers/TutorialDoneArea" to="TutorialController" method="_on_tuto_done_area_body_entered"]
|
[connection signal="body_entered" from="TutoTriggers/TutorialDoneArea" to="TutorialController" method="_on_tuto_done_area_body_entered"]
|
||||||
|
[connection signal="body_entered" from="TutoTriggers/TutorialDoneArea" to="Player" method="OnTutorialDone"]
|
||||||
[connection signal="body_exited" from="TutoTriggers/TutorialDoneArea" to="TutorialController" method="hide_tutorials"]
|
[connection signal="body_exited" from="TutoTriggers/TutorialDoneArea" to="TutorialController" method="hide_tutorials"]
|
||||||
[connection signal="body_entered" from="TutoTriggers/WeaponRetrieved" to="PlacedTutorialWeapon" method="_on_weapon_retrieved_body_entered"]
|
|
||||||
[connection signal="body_entered" from="TutoTriggers/WeaponRetrieved" to="TutorialController" method="_on_weapon_retrieved_body_entered"]
|
[connection signal="body_entered" from="TutoTriggers/WeaponRetrieved" to="TutorialController" method="_on_weapon_retrieved_body_entered"]
|
||||||
[connection signal="timeout" from="TutorialController/WaitToShowBlockingTuto" to="TutorialController" method="_show_weapon_tutorial"]
|
[connection signal="body_entered" from="TutoTriggers/WeaponRetrieved" to="PlacedTutorialWeapon" method="_on_weapon_retrieved_body_entered"]
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
[gd_scene load_steps=17 format=3 uid="uid://vm22i5sv3p3s"]
|
[gd_scene load_steps=19 format=3 uid="uid://vm22i5sv3p3s"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://c6k5nnpbypshi" path="res://addons/maaacks_game_template/base/scenes/menus/main_menu/main_menu.tscn" id="1_my8ii"]
|
[ext_resource type="PackedScene" uid="uid://c6k5nnpbypshi" path="res://addons/maaacks_game_template/base/scenes/menus/main_menu/main_menu.tscn" id="1_my8ii"]
|
||||||
[ext_resource type="Script" uid="uid://c0ntfmiuw4ttg" path="res://menus/scenes/menus/main_menu/main_menu_with_animations.gd" id="2_nyjay"]
|
[ext_resource type="Script" uid="uid://c0ntfmiuw4ttg" path="res://menus/scenes/menus/main_menu/main_menu_with_animations.gd" id="2_nyjay"]
|
||||||
[ext_resource type="AudioStream" uid="uid://f8cvr5s041ej" path="res://assets/audio/ambiance/637083__nox_sound__ambiance_nature_night_cricket_calm_loop_stereo.wav" id="3_tvvjd"]
|
[ext_resource type="AudioStream" uid="uid://f8cvr5s041ej" path="res://assets/audio/ambiance/637083__nox_sound__ambiance_nature_night_cricket_calm_loop_stereo.wav" id="3_tvvjd"]
|
||||||
|
[ext_resource type="Resource" uid="uid://c2hpxkcujyc13" path="res://systems/inputs/menu_mode/menu_mode.tres" id="3_ytpwg"]
|
||||||
|
[ext_resource type="Resource" uid="uid://ck43v3q5ype3f" path="res://systems/inputs/menu_mode/back.tres" id="4_8i6b8"]
|
||||||
|
|
||||||
[sub_resource type="Animation" id="1"]
|
[sub_resource type="Animation" id="1"]
|
||||||
resource_name = "Intro"
|
resource_name = "Intro"
|
||||||
@@ -352,6 +354,8 @@ graph_offset = Vector2(-180.277, 49)
|
|||||||
script = ExtResource("2_nyjay")
|
script = ExtResource("2_nyjay")
|
||||||
level_select_packed_scene = null
|
level_select_packed_scene = null
|
||||||
game_scene_path = "uid://dmkw8cmalm5k"
|
game_scene_path = "uid://dmkw8cmalm5k"
|
||||||
|
menu_context = ExtResource("3_ytpwg")
|
||||||
|
back_action = ExtResource("4_8i6b8")
|
||||||
|
|
||||||
[node name="MenuAnimationPlayer" type="AnimationPlayer" parent="." index="1"]
|
[node name="MenuAnimationPlayer" type="AnimationPlayer" parent="." index="1"]
|
||||||
libraries = {
|
libraries = {
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
[gd_scene load_steps=3 format=3 uid="uid://dim045la3mijk"]
|
[gd_scene load_steps=4 format=3 uid="uid://dim045la3mijk"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://cikf3o5omnunl" path="res://addons/maaacks_game_template/base/scenes/overlaid_menu/menus/mini_options_overlaid_menu.tscn" id="1_5piya"]
|
[ext_resource type="PackedScene" uid="uid://cikf3o5omnunl" path="res://addons/maaacks_game_template/base/scenes/overlaid_menu/menus/mini_options_overlaid_menu.tscn" id="1_5piya"]
|
||||||
[ext_resource type="PackedScene" uid="uid://foajscu2dqkk" path="res://menus/scenes/menus/options_menu/mini_options_menu_with_reset.tscn" id="2_3u5po"]
|
[ext_resource type="PackedScene" uid="uid://foajscu2dqkk" path="res://menus/scenes/menus/options_menu/mini_options_menu_with_reset.tscn" id="2_3u5po"]
|
||||||
|
[ext_resource type="Resource" uid="uid://ck43v3q5ype3f" path="res://systems/inputs/menu_mode/back.tres" id="3_i7tty"]
|
||||||
|
|
||||||
[node name="MiniOptionsOverlaidMenu" instance=ExtResource("1_5piya")]
|
[node name="MiniOptionsOverlaidMenu" instance=ExtResource("1_5piya")]
|
||||||
menu_scene = ExtResource("2_3u5po")
|
menu_scene = ExtResource("2_3u5po")
|
||||||
|
back_action = ExtResource("3_i7tty")
|
||||||
|
|||||||
@@ -1,15 +1,18 @@
|
|||||||
[gd_scene load_steps=5 format=3 uid="uid://ccqajqchiw4xu"]
|
[gd_scene load_steps=6 format=3 uid="uid://ccqajqchiw4xu"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://b5cd6sa8qq4vc" path="res://addons/maaacks_game_template/base/scenes/overlaid_menu/menus/pause_menu.tscn" id="1_0paax"]
|
[ext_resource type="PackedScene" uid="uid://b5cd6sa8qq4vc" path="res://addons/maaacks_game_template/base/scenes/overlaid_menu/menus/pause_menu.tscn" id="1_0paax"]
|
||||||
[ext_resource type="Script" uid="uid://bwvomv4eww4fg" path="res://menus/scenes/overlaid_menus/pause_menu.gd" id="2_ek1hy"]
|
[ext_resource type="Script" uid="uid://bwvomv4eww4fg" path="res://menus/scenes/overlaid_menus/pause_menu.gd" id="2_ek1hy"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dim045la3mijk" path="res://menus/scenes/overlaid_menus/mini_options_overlaid_menu.tscn" id="3_e0t2r"]
|
[ext_resource type="PackedScene" uid="uid://dim045la3mijk" path="res://menus/scenes/overlaid_menus/mini_options_overlaid_menu.tscn" id="3_e0t2r"]
|
||||||
[ext_resource type="Resource" uid="uid://c2hpxkcujyc13" path="res://systems/inputs/menu_mode/menu_mode.tres" id="4_nfx08"]
|
[ext_resource type="Resource" uid="uid://c2hpxkcujyc13" path="res://systems/inputs/menu_mode/menu_mode.tres" id="4_nfx08"]
|
||||||
|
[ext_resource type="Resource" uid="uid://ck43v3q5ype3f" path="res://systems/inputs/menu_mode/back.tres" id="5_su1bt"]
|
||||||
|
|
||||||
[node name="PauseMenu" instance=ExtResource("1_0paax")]
|
[node name="PauseMenu" instance=ExtResource("1_0paax")]
|
||||||
|
top_level = true
|
||||||
script = ExtResource("2_ek1hy")
|
script = ExtResource("2_ek1hy")
|
||||||
options_packed_scene = ExtResource("3_e0t2r")
|
options_packed_scene = ExtResource("3_e0t2r")
|
||||||
main_menu_scene = "res://menus/scenes/menus/main_menu/main_menu_with_animations.tscn"
|
main_menu_scene = "res://menus/scenes/menus/main_menu/main_menu_with_animations.tscn"
|
||||||
menu_context = ExtResource("4_nfx08")
|
menu_context = ExtResource("4_nfx08")
|
||||||
|
back_action = ExtResource("5_su1bt")
|
||||||
|
|
||||||
[connection signal="tree_entered" from="." to="." method="on_enter_tree"]
|
[connection signal="tree_entered" from="." to="." method="on_enter_tree"]
|
||||||
[connection signal="tree_exited" from="." to="." method="on_exit_tree"]
|
[connection signal="tree_exited" from="." to="." method="on_exit_tree"]
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ static func get_level_state(level_state_key : String) -> LevelState:
|
|||||||
return new_level_state
|
return new_level_state
|
||||||
|
|
||||||
static func has_game_state() -> bool:
|
static func has_game_state() -> bool:
|
||||||
return false
|
|
||||||
return GlobalState.has_state(STATE_NAME)
|
return GlobalState.has_state(STATE_NAME)
|
||||||
|
|
||||||
static func get_game_state() -> GameState:
|
static func get_game_state() -> GameState:
|
||||||
|
|||||||
@@ -1,12 +1,10 @@
|
|||||||
[gd_scene load_steps=49 format=3 uid="uid://bei4nhkf8lwdo"]
|
[gd_scene load_steps=47 format=3 uid="uid://bei4nhkf8lwdo"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://bbbrf5ckydfna" path="res://player_controller/Scripts/PlayerController.cs" id="1_poq2x"]
|
[ext_resource type="Script" uid="uid://bbbrf5ckydfna" path="res://player_controller/Scripts/PlayerController.cs" id="1_poq2x"]
|
||||||
[ext_resource type="Resource" uid="uid://bl5crtu1gkrtr" path="res://systems/inputs/base_mode/base_mode.tres" id="3_cresl"]
|
[ext_resource type="Resource" uid="uid://bl5crtu1gkrtr" path="res://systems/inputs/base_mode/base_mode.tres" id="3_cresl"]
|
||||||
[ext_resource type="Resource" uid="uid://cpdaw41ah5gic" path="res://systems/inputs/base_mode/rotate_y.tres" id="4_rxwoh"]
|
[ext_resource type="Resource" uid="uid://cpdaw41ah5gic" path="res://systems/inputs/base_mode/rotate_y.tres" id="4_rxwoh"]
|
||||||
[ext_resource type="Resource" uid="uid://ccrb5xsnphc8" path="res://systems/inputs/base_mode/rotate_floorplane.tres" id="5_4u7i3"]
|
[ext_resource type="Resource" uid="uid://ccrb5xsnphc8" path="res://systems/inputs/base_mode/rotate_floorplane.tres" id="5_4u7i3"]
|
||||||
[ext_resource type="Resource" uid="uid://f3vs6l4m623s" path="res://systems/inputs/base_mode/move_left.tres" id="5_q14ux"]
|
[ext_resource type="Resource" uid="uid://f3vs6l4m623s" path="res://systems/inputs/base_mode/move_left.tres" id="5_q14ux"]
|
||||||
[ext_resource type="Script" uid="uid://dv7v1ywmbvvcd" path="res://player_controller/Scripts/HealthSystem.cs" id="5_umw0l"]
|
|
||||||
[ext_resource type="Script" uid="uid://vuq8rjq3vegn" path="res://player_controller/Scripts/Stamina.cs" id="6_lxtc4"]
|
|
||||||
[ext_resource type="Resource" uid="uid://t612lts1wi1s" path="res://systems/inputs/base_mode/move_right.tres" id="6_q7bng"]
|
[ext_resource type="Resource" uid="uid://t612lts1wi1s" path="res://systems/inputs/base_mode/move_right.tres" id="6_q7bng"]
|
||||||
[ext_resource type="Script" uid="uid://cwbvxlfvmocc1" path="res://player_controller/Scripts/StairsSystem.cs" id="7_bmt5a"]
|
[ext_resource type="Script" uid="uid://cwbvxlfvmocc1" path="res://player_controller/Scripts/StairsSystem.cs" id="7_bmt5a"]
|
||||||
[ext_resource type="Resource" uid="uid://brswsknpgwal2" path="res://systems/inputs/base_mode/move_front.tres" id="7_m8gvy"]
|
[ext_resource type="Resource" uid="uid://brswsknpgwal2" path="res://systems/inputs/base_mode/move_front.tres" id="7_m8gvy"]
|
||||||
@@ -86,6 +84,14 @@ PostDashSpeed = 30.0
|
|||||||
WallHugGravityLesseningFactor = 15.0
|
WallHugGravityLesseningFactor = 15.0
|
||||||
WallHugDownwardMaxSpeed = 8.0
|
WallHugDownwardMaxSpeed = 8.0
|
||||||
WallHugHorizontalDeceleration = 0.5
|
WallHugHorizontalDeceleration = 0.5
|
||||||
|
WallRunAltitudeLossSpeed = 12.0
|
||||||
|
WallRunSpeedThreshold = 5.0
|
||||||
|
|
||||||
|
[node name="WallRunSnapper" type="RayCast3D" parent="."]
|
||||||
|
unique_name_in_owner = true
|
||||||
|
transform = Transform3D(0.99999994, 0, 0, 0, 1, 0, 0, 0, 0.99999994, 0, 0, 0)
|
||||||
|
target_position = Vector3(0, 0, -5)
|
||||||
|
collision_mask = 2
|
||||||
|
|
||||||
[node name="InputController" type="Node3D" parent="."]
|
[node name="InputController" type="Node3D" parent="."]
|
||||||
script = ExtResource("16_v31n3")
|
script = ExtResource("16_v31n3")
|
||||||
@@ -124,12 +130,6 @@ CapsuleDefaultHeight = 1.7
|
|||||||
[node name="HeadSystem" parent="." instance=ExtResource("11_rxwoh")]
|
[node name="HeadSystem" parent="." instance=ExtResource("11_rxwoh")]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.6, 0)
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.6, 0)
|
||||||
|
|
||||||
[node name="HealthSystem" type="Node3D" parent="."]
|
|
||||||
script = ExtResource("5_umw0l")
|
|
||||||
|
|
||||||
[node name="Stamina" type="Node3D" parent="."]
|
|
||||||
script = ExtResource("6_lxtc4")
|
|
||||||
|
|
||||||
[node name="StairsSystem" type="Node3D" parent="."]
|
[node name="StairsSystem" type="Node3D" parent="."]
|
||||||
script = ExtResource("7_bmt5a")
|
script = ExtResource("7_bmt5a")
|
||||||
|
|
||||||
@@ -171,7 +171,6 @@ target_position = Vector3(0, 1, 0)
|
|||||||
[node name="TweenQueueSystem" parent="." instance=ExtResource("22_rpwev")]
|
[node name="TweenQueueSystem" parent="." instance=ExtResource("22_rpwev")]
|
||||||
|
|
||||||
[node name="WallHugSystem" type="Node3D" parent="."]
|
[node name="WallHugSystem" type="Node3D" parent="."]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0)
|
|
||||||
script = ExtResource("27_n7qhm")
|
script = ExtResource("27_n7qhm")
|
||||||
|
|
||||||
[node name="back" type="RayCast3D" parent="WallHugSystem"]
|
[node name="back" type="RayCast3D" parent="WallHugSystem"]
|
||||||
@@ -249,15 +248,24 @@ offset_bottom = 1.0
|
|||||||
enabled = false
|
enabled = false
|
||||||
initial_node_to_watch = NodePath("../StateChart")
|
initial_node_to_watch = NodePath("../StateChart")
|
||||||
|
|
||||||
[node name="UI" type="CanvasLayer" parent="."]
|
[node name="UI" type="Control" parent="."]
|
||||||
script = ExtResource("30_2ghaa")
|
layout_mode = 3
|
||||||
|
|
||||||
[node name="MarginContainer" type="MarginContainer" parent="UI"]
|
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
|
mouse_filter = 1
|
||||||
|
script = ExtResource("30_2ghaa")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="UI"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
mouse_filter = 2
|
||||||
theme_override_constants/margin_left = 50
|
theme_override_constants/margin_left = 50
|
||||||
theme_override_constants/margin_top = 50
|
theme_override_constants/margin_top = 50
|
||||||
theme_override_constants/margin_right = 50
|
theme_override_constants/margin_right = 50
|
||||||
@@ -296,12 +304,14 @@ expand_mode = 2
|
|||||||
|
|
||||||
[node name="CenterContainer" type="CenterContainer" parent="UI"]
|
[node name="CenterContainer" type="CenterContainer" parent="UI"]
|
||||||
custom_minimum_size = Vector2(1920, 1080)
|
custom_minimum_size = Vector2(1920, 1080)
|
||||||
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
offset_right = -1.0
|
offset_right = -1.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
|
mouse_filter = 2
|
||||||
|
|
||||||
[node name="CenterIcon" type="TextureRect" parent="UI/CenterContainer"]
|
[node name="CenterIcon" type="TextureRect" parent="UI/CenterContainer"]
|
||||||
material = SubResource("CanvasItemMaterial_2q0ik")
|
material = SubResource("CanvasItemMaterial_2q0ik")
|
||||||
@@ -311,11 +321,13 @@ texture = ExtResource("32_lgpc8")
|
|||||||
expand_mode = 1
|
expand_mode = 1
|
||||||
|
|
||||||
[node name="CenterContainer2" type="CenterContainer" parent="UI"]
|
[node name="CenterContainer2" type="CenterContainer" parent="UI"]
|
||||||
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
|
mouse_filter = 2
|
||||||
|
|
||||||
[node name="MarginContainer" type="MarginContainer" parent="UI/CenterContainer2"]
|
[node name="MarginContainer" type="MarginContainer" parent="UI/CenterContainer2"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using Godot;
|
using Godot;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
public partial class PlayerUi : CanvasLayer
|
public partial class PlayerUi : Control
|
||||||
{
|
{
|
||||||
private TextureRect[] _dashIcons = new TextureRect[3];
|
private TextureRect[] _dashIcons = new TextureRect[3];
|
||||||
|
|
||||||
|
|||||||
@@ -146,9 +146,6 @@ public partial class HealthSystem : Node3D
|
|||||||
public CharacterBody3D Parent;
|
public CharacterBody3D Parent;
|
||||||
public Camera3D Camera;
|
public Camera3D Camera;
|
||||||
public Node3D Head;
|
public Node3D Head;
|
||||||
public ColorRect VignetteRect;
|
|
||||||
public ColorRect DistortionRect;
|
|
||||||
public ColorRect BlurRect;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Init(HealthSystemInitParams initParams)
|
public void Init(HealthSystemInitParams initParams)
|
||||||
@@ -162,10 +159,6 @@ public partial class HealthSystem : Node3D
|
|||||||
_camera = initParams.Camera;
|
_camera = initParams.Camera;
|
||||||
|
|
||||||
_head = initParams.Head;
|
_head = initParams.Head;
|
||||||
|
|
||||||
_vignetteMaterial = initParams.VignetteRect.Material as ShaderMaterial;
|
|
||||||
_distortionMaterial = initParams.DistortionRect.Material as ShaderMaterial;
|
|
||||||
_blurMaterial = initParams.BlurRect.Material as ShaderMaterial;
|
|
||||||
|
|
||||||
// Resetting shaders' parameters
|
// Resetting shaders' parameters
|
||||||
|
|
||||||
|
|||||||
@@ -21,12 +21,10 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
public HeadSystem HeadSystem;
|
public HeadSystem HeadSystem;
|
||||||
public Bobbing Bobbing;
|
public Bobbing Bobbing;
|
||||||
public FieldOfView FieldOfView;
|
public FieldOfView FieldOfView;
|
||||||
public Stamina Stamina;
|
|
||||||
public StairsSystem StairsSystem;
|
public StairsSystem StairsSystem;
|
||||||
public MantleSystem MantleSystem;
|
public MantleSystem MantleSystem;
|
||||||
public DashSystem DashSystem;
|
public DashSystem DashSystem;
|
||||||
public CapsuleCollider CapsuleCollider;
|
public CapsuleCollider CapsuleCollider;
|
||||||
public HealthSystem HealthSystem;
|
|
||||||
public TweenQueueSystem TweenQueueSystem;
|
public TweenQueueSystem TweenQueueSystem;
|
||||||
public Node3D WeaponRoot;
|
public Node3D WeaponRoot;
|
||||||
public WeaponSystem WeaponSystem;
|
public WeaponSystem WeaponSystem;
|
||||||
@@ -37,6 +35,7 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
public Node3D DashIndicatorNode;
|
public Node3D DashIndicatorNode;
|
||||||
public MeshInstance3D DashIndicatorMesh;
|
public MeshInstance3D DashIndicatorMesh;
|
||||||
public CylinderMesh DashIndicatorMeshCylinder;
|
public CylinderMesh DashIndicatorMeshCylinder;
|
||||||
|
public RayCast3D WallRunSnapper;
|
||||||
|
|
||||||
private bool _movementEnabled = true;
|
private bool _movementEnabled = true;
|
||||||
|
|
||||||
@@ -156,6 +155,16 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
[Export(PropertyHint.Range, "0.1,10,0.1,or_greater")]
|
[Export(PropertyHint.Range, "0.1,10,0.1,or_greater")]
|
||||||
public float WallHugHorizontalDeceleration { get; set; } = 5f;
|
public float WallHugHorizontalDeceleration { get; set; } = 5f;
|
||||||
|
|
||||||
|
// Wall run
|
||||||
|
[ExportGroup("Wall run")]
|
||||||
|
[Export(PropertyHint.Range, "1,20,0.1,or_greater")]
|
||||||
|
public float WallRunUpwardVelocity { get; set; } = 10f;
|
||||||
|
[Export(PropertyHint.Range, "1,20,0.1,or_greater")]
|
||||||
|
public float WallRunAltitudeLossSpeed { get; set; } = 10f;
|
||||||
|
|
||||||
|
[Export(PropertyHint.Range, "1,20,0.1,or_greater")]
|
||||||
|
public float WallRunSpeedThreshold { get; set; } = 8f;
|
||||||
|
|
||||||
private float _targetSpeed;
|
private float _targetSpeed;
|
||||||
private float _gravity;
|
private float _gravity;
|
||||||
|
|
||||||
@@ -239,11 +248,6 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
FieldOfView = GetNode<FieldOfView>("FieldOfView");
|
FieldOfView = GetNode<FieldOfView>("FieldOfView");
|
||||||
Camera3D camera = GetNode<Camera3D>("HeadSystem/CameraSmooth/Camera3D");
|
Camera3D camera = GetNode<Camera3D>("HeadSystem/CameraSmooth/Camera3D");
|
||||||
Node3D cameraSmooth = GetNode<Node3D>("HeadSystem/CameraSmooth");
|
Node3D cameraSmooth = GetNode<Node3D>("HeadSystem/CameraSmooth");
|
||||||
ColorRect vignetteRect = GetNode<ColorRect>(
|
|
||||||
"HeadSystem/CameraSmooth/Camera3D/CLVignette(Layer_1)/HealthVignetteRect");
|
|
||||||
ColorRect distortionRect = GetNode<ColorRect>(
|
|
||||||
"HeadSystem/CameraSmooth/Camera3D/CLDistortion(Layer_2)/HealthDistortionRect");
|
|
||||||
ColorRect blurRect = GetNode<ColorRect>("HeadSystem/CameraSmooth/Camera3D/CLBlur(Layer_2)/BlurRect");
|
|
||||||
|
|
||||||
// Movement stuff
|
// Movement stuff
|
||||||
WeaponRoot = GetNode<Node3D>("WeaponRoot");
|
WeaponRoot = GetNode<Node3D>("WeaponRoot");
|
||||||
@@ -253,6 +257,7 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
DashSystem = GetNode<DashSystem>("DashSystem");
|
DashSystem = GetNode<DashSystem>("DashSystem");
|
||||||
StairsSystem = GetNode<StairsSystem>("StairsSystem");
|
StairsSystem = GetNode<StairsSystem>("StairsSystem");
|
||||||
WallHugSystem = GetNode<WallHugSystem>("WallHugSystem");
|
WallHugSystem = GetNode<WallHugSystem>("WallHugSystem");
|
||||||
|
WallRunSnapper = GetNode<RayCast3D>("%WallRunSnapper");
|
||||||
RayCast3D stairsBelowRayCast3D = GetNode<RayCast3D>("StairsBelowRayCast3D");
|
RayCast3D stairsBelowRayCast3D = GetNode<RayCast3D>("StairsBelowRayCast3D");
|
||||||
RayCast3D stairsAheadRayCast3D = GetNode<RayCast3D>("StairsAheadRayCast3D");
|
RayCast3D stairsAheadRayCast3D = GetNode<RayCast3D>("StairsAheadRayCast3D");
|
||||||
_headCollisionDetectors = new RayCast3D[NUM_OF_HEAD_COLLISION_DETECTORS];
|
_headCollisionDetectors = new RayCast3D[NUM_OF_HEAD_COLLISION_DETECTORS];
|
||||||
@@ -266,11 +271,7 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
_playerHeight = playerShape!.Height;
|
_playerHeight = playerShape!.Height;
|
||||||
_playerRadius = playerShape.Radius;
|
_playerRadius = playerShape.Radius;
|
||||||
|
|
||||||
// RPG Stuff
|
// State managementb
|
||||||
Stamina = GetNode<Stamina>("Stamina");
|
|
||||||
HealthSystem = GetNode<HealthSystem>("HealthSystem");
|
|
||||||
|
|
||||||
// State management
|
|
||||||
_playerState = StateChart.Of(GetNode("StateChart"));
|
_playerState = StateChart.Of(GetNode("StateChart"));
|
||||||
|
|
||||||
_aiming = StateChartState.Of(GetNode("StateChart/Root/Aim/On"));
|
_aiming = StateChartState.Of(GetNode("StateChart/Root/Aim/On"));
|
||||||
@@ -322,18 +323,6 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
WallHugSystem.Init();
|
WallHugSystem.Init();
|
||||||
|
|
||||||
// RPG Stuff
|
// RPG Stuff
|
||||||
HealthSystem.HealthSystemInitParams healthSystemParams = new HealthSystem.HealthSystemInitParams()
|
|
||||||
{
|
|
||||||
Parent = this,
|
|
||||||
Camera = camera,
|
|
||||||
Head = HeadSystem,
|
|
||||||
VignetteRect = vignetteRect,
|
|
||||||
DistortionRect = distortionRect,
|
|
||||||
BlurRect = blurRect,
|
|
||||||
};
|
|
||||||
HealthSystem.Init(healthSystemParams);
|
|
||||||
Stamina.SetSpeeds(WalkSpeed, WalkSpeed);
|
|
||||||
|
|
||||||
EmpoweredActionsLeft = MaxNumberOfEmpoweredActions;
|
EmpoweredActionsLeft = MaxNumberOfEmpoweredActions;
|
||||||
|
|
||||||
if (!TutorialDone)
|
if (!TutorialDone)
|
||||||
@@ -450,8 +439,6 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
_playerState.SendEvent("start_falling");
|
_playerState.SendEvent("start_falling");
|
||||||
}
|
}
|
||||||
|
|
||||||
private float _wallRunSpeedThreshold = 8f;
|
|
||||||
|
|
||||||
public void HandleAirborne(float delta)
|
public void HandleAirborne(float delta)
|
||||||
{
|
{
|
||||||
MoveInAir(delta);
|
MoveInAir(delta);
|
||||||
@@ -467,19 +454,21 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
|
|
||||||
// Should we start a wall run
|
// Should we start a wall run
|
||||||
var wallNormal = WallHugSystem.WallHugNormal.UnwrapOr(Vector3.Zero);
|
var wallNormal = WallHugSystem.WallHugNormal.UnwrapOr(Vector3.Zero);
|
||||||
|
var isIndeedWall = wallNormal.Y < 0.1;
|
||||||
var hvel = new Vector3(Velocity.X, 0, Velocity.Z);
|
var hvel = new Vector3(Velocity.X, 0, Velocity.Z);
|
||||||
var hvelProjected = hvel.Slide(_wallHugStartNormal);
|
var hvelProjected = hvel.Slide(_wallHugStartNormal);
|
||||||
var haveEnoughSpeed = hvelProjected.Length() > _wallRunSpeedThreshold;
|
var haveEnoughSpeed = hvelProjected.Length() > WallRunSpeedThreshold;
|
||||||
var isHeadPlanting = Velocity.AngleTo(wallNormal) < Math.PI / 4;
|
var isCoplanarEnough = Velocity.AngleTo(wallNormal) > Math.PI/4 && Velocity.AngleTo(wallNormal) < 3*Math.PI/4;
|
||||||
var isGoingDownwards = Velocity.AngleTo(Vector3.Down) < Math.PI / 4;
|
var isGoingDownwards = Velocity.AngleTo(Vector3.Down) < Math.PI/4;
|
||||||
if (haveEnoughSpeed && !isHeadPlanting && !isGoingDownwards)
|
if (haveEnoughSpeed && isCoplanarEnough && !isGoingDownwards && isIndeedWall && !_coyoteEnabled.Active)
|
||||||
{
|
{
|
||||||
|
SetVerticalVelocity(WallRunUpwardVelocity);
|
||||||
_playerState.SendEvent("wall_run");
|
_playerState.SendEvent("wall_run");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If all else fail and we go down, we hug
|
// If all else fail and we go down, we hug
|
||||||
if (Velocity.Y < 0)
|
if (Velocity.Y < 0 && !_coyoteEnabled.Active)
|
||||||
_playerState.SendEvent("wall_hug");
|
_playerState.SendEvent("wall_hug");
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -499,14 +488,11 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
_wallHugStartNormal = newWallNormal;
|
_wallHugStartNormal = newWallNormal;
|
||||||
}
|
}
|
||||||
|
|
||||||
private float _timeSinceWallStarted;
|
|
||||||
|
|
||||||
public void OnWallStarted()
|
public void OnWallStarted()
|
||||||
{
|
{
|
||||||
_wallHugStartNormal = WallHugSystem.WallHugNormal.UnwrapOr(Vector3.Up);
|
_wallHugStartNormal = WallHugSystem.WallHugNormal.UnwrapOr(Vector3.Up);
|
||||||
_wallHugStartLocation = WallHugSystem.WallHugLocation.UnwrapOr(Vector3.Zero) + _wallHugStartNormal * _playerRadius;
|
_wallHugStartLocation = WallHugSystem.WallHugLocation.UnwrapOr(Vector3.Zero) + _wallHugStartNormal * _playerRadius;
|
||||||
_wallHugStartProjectedVelocity = Velocity.Slide(_wallHugStartNormal);
|
_wallHugStartProjectedVelocity = Velocity.Slide(_wallHugStartNormal);
|
||||||
_timeSinceWallStarted = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnWallStopped()
|
public void OnWallStopped()
|
||||||
@@ -528,23 +514,26 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
WallHang(delta);
|
WallHang(delta);
|
||||||
}
|
}
|
||||||
|
|
||||||
private float _wallRunUpwardVelocity = 10f;
|
|
||||||
|
|
||||||
public void HandleWallRunning(float delta)
|
public void HandleWallRunning(float delta)
|
||||||
{
|
{
|
||||||
_timeSinceWallStarted += delta;
|
// Find horizontal velocity projected on the current wall
|
||||||
|
|
||||||
var hvel = new Vector3(Velocity.X, 0, Velocity.Z);
|
var hvel = new Vector3(Velocity.X, 0, Velocity.Z);
|
||||||
var hvelProjected = hvel.Slide(_wallHugStartNormal);
|
var hvelProjected = hvel.Slide(_wallHugStartNormal);
|
||||||
Velocity = hvelProjected + hvelProjected.Length()*Vector3.Up*0.3f/(1+_timeSinceWallStarted);
|
|
||||||
Velocity *= 0.99f;
|
|
||||||
|
|
||||||
// if (CanMantle())
|
|
||||||
// {
|
|
||||||
// MantleToLocation(_plannedMantleLocation.Unwrap());
|
|
||||||
// }
|
|
||||||
|
|
||||||
if (!WallHugSystem.IsWallHugging() || Velocity.Length() < _wallRunSpeedThreshold)
|
// Reorient horizontal velocity so we keep it coplanar with the wall without losing speed
|
||||||
|
var finalHVel = hvelProjected.Normalized() * hvel.Length();
|
||||||
|
|
||||||
|
// Adapt vertical speed
|
||||||
|
var verticalSpeed = Velocity.Y - WallRunAltitudeLossSpeed * delta;
|
||||||
|
Velocity = finalHVel + Vector3.Up*verticalSpeed;
|
||||||
|
Velocity *= 0.995f;
|
||||||
|
|
||||||
|
if (WallRunSnapper.IsColliding())
|
||||||
|
{
|
||||||
|
GD.Print((WallRunSnapper.GetCollisionPoint() - WallRunSnapper.GlobalPosition).Length());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!WallHugSystem.IsWallHugging() || Velocity.Length() < WallRunSpeedThreshold)
|
||||||
{
|
{
|
||||||
_playerState.SendEvent("start_falling");
|
_playerState.SendEvent("start_falling");
|
||||||
}
|
}
|
||||||
@@ -572,7 +561,10 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
{
|
{
|
||||||
if (CanMantle())
|
if (CanMantle())
|
||||||
{
|
{
|
||||||
MantleToLocation(_plannedMantleLocation.Unwrap());
|
var location = _plannedMantleLocation.UnwrapOr(Vector3.Zero);
|
||||||
|
if (location == Vector3.Zero)
|
||||||
|
return; // For some reason CanMantle can return an invalid location so fuck off I guess
|
||||||
|
MantleToLocation(location);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -581,6 +573,7 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
_playerState.SendEvent("megajump");
|
_playerState.SendEvent("megajump");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
_playerState.SendEvent("jump");
|
_playerState.SendEvent("jump");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -605,6 +598,7 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
public void OnDoubleJumpStarted()
|
public void OnDoubleJumpStarted()
|
||||||
{
|
{
|
||||||
_canDash = true;
|
_canDash = true;
|
||||||
|
_canDashAirborne = true;
|
||||||
OnJumpStarted(DoubleJumpStartVelocity);
|
OnJumpStarted(DoubleJumpStartVelocity);
|
||||||
}
|
}
|
||||||
public void OnMegaJumpStarted()
|
public void OnMegaJumpStarted()
|
||||||
@@ -966,6 +960,9 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
|
|
||||||
public void PlaceWeaponForTutorial()
|
public void PlaceWeaponForTutorial()
|
||||||
{
|
{
|
||||||
|
if (TutorialDone)
|
||||||
|
return;
|
||||||
|
|
||||||
RemoveChild(WeaponRoot);
|
RemoveChild(WeaponRoot);
|
||||||
GetTree().GetRoot().CallDeferred(Node.MethodName.AddChild, WeaponRoot);
|
GetTree().GetRoot().CallDeferred(Node.MethodName.AddChild, WeaponRoot);
|
||||||
WeaponRoot.CallDeferred(Node3D.MethodName.SetGlobalPosition, TutorialWeaponTarget.GlobalPosition);
|
WeaponRoot.CallDeferred(Node3D.MethodName.SetGlobalPosition, TutorialWeaponTarget.GlobalPosition);
|
||||||
@@ -1181,7 +1178,7 @@ public partial class PlayerController : CharacterBody3D
|
|||||||
Bobbing.CameraBobbingParams cameraBobbingParams = new Bobbing.CameraBobbingParams
|
Bobbing.CameraBobbingParams cameraBobbingParams = new Bobbing.CameraBobbingParams
|
||||||
{
|
{
|
||||||
Delta = delta,
|
Delta = delta,
|
||||||
IsOnFloorCustom = isOnFloorCustom(),
|
IsOnFloorCustom = isOnFloorCustom() || _onWallRunning.Active,
|
||||||
Velocity = Velocity,
|
Velocity = Velocity,
|
||||||
SettingsMultiplier = _headBobbingMultiplier
|
SettingsMultiplier = _headBobbingMultiplier
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,14 +1,31 @@
|
|||||||
[gd_scene load_steps=9 format=3 uid="uid://0ysqmqphq6mq"]
|
[gd_scene load_steps=5 format=3 uid="uid://0ysqmqphq6mq"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://dtkdrnsmlwm67" path="res://systems/head/HeadSystem.cs" id="1_8abgy"]
|
[ext_resource type="Script" uid="uid://dtkdrnsmlwm67" path="res://systems/head/HeadSystem.cs" id="1_8abgy"]
|
||||||
[ext_resource type="Material" uid="uid://dtq8i1ka1f2pn" path="res://player_controller/Assets/Materials/Health/CameraVignette.tres" id="2_urko7"]
|
|
||||||
[ext_resource type="Material" uid="uid://nyh5tn1yoxeu" path="res://player_controller/Assets/Materials/Health/CameraDistortion.tres" id="3_0hyrq"]
|
|
||||||
[ext_resource type="Shader" uid="uid://btw6vsb6sa7sn" path="res://player_controller/Shaders/Blur.gdshader" id="4_ubhf8"]
|
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_o1np4"]
|
[sub_resource type="Animation" id="Animation_urko7"]
|
||||||
shader = ExtResource("4_ubhf8")
|
length = 0.001
|
||||||
shader_parameter/limit = 0.0
|
tracks/0/type = "bezier"
|
||||||
shader_parameter/blur = 0.0
|
tracks/0/imported = false
|
||||||
|
tracks/0/enabled = true
|
||||||
|
tracks/0/path = NodePath("..:rotation:x")
|
||||||
|
tracks/0/interp = 1
|
||||||
|
tracks/0/loop_wrap = true
|
||||||
|
tracks/0/keys = {
|
||||||
|
"handle_modes": PackedInt32Array(0),
|
||||||
|
"points": PackedFloat32Array(0, -0.15, 0, 0.15, 0),
|
||||||
|
"times": PackedFloat32Array(0)
|
||||||
|
}
|
||||||
|
tracks/1/type = "bezier"
|
||||||
|
tracks/1/imported = false
|
||||||
|
tracks/1/enabled = true
|
||||||
|
tracks/1/path = NodePath("..:rotation:z")
|
||||||
|
tracks/1/interp = 1
|
||||||
|
tracks/1/loop_wrap = true
|
||||||
|
tracks/1/keys = {
|
||||||
|
"handle_modes": PackedInt32Array(0),
|
||||||
|
"points": PackedFloat32Array(0, -0.15, 0, 0.15, 0),
|
||||||
|
"times": PackedFloat32Array(0)
|
||||||
|
}
|
||||||
|
|
||||||
[sub_resource type="Animation" id="Animation_8abgy"]
|
[sub_resource type="Animation" id="Animation_8abgy"]
|
||||||
resource_name = "mantle"
|
resource_name = "mantle"
|
||||||
@@ -36,31 +53,6 @@ tracks/1/keys = {
|
|||||||
"times": PackedFloat32Array(0, 0.1, 0.2, 0.3)
|
"times": PackedFloat32Array(0, 0.1, 0.2, 0.3)
|
||||||
}
|
}
|
||||||
|
|
||||||
[sub_resource type="Animation" id="Animation_urko7"]
|
|
||||||
length = 0.001
|
|
||||||
tracks/0/type = "bezier"
|
|
||||||
tracks/0/imported = false
|
|
||||||
tracks/0/enabled = true
|
|
||||||
tracks/0/path = NodePath("..:rotation:x")
|
|
||||||
tracks/0/interp = 1
|
|
||||||
tracks/0/loop_wrap = true
|
|
||||||
tracks/0/keys = {
|
|
||||||
"handle_modes": PackedInt32Array(0),
|
|
||||||
"points": PackedFloat32Array(0, -0.15, 0, 0.15, 0),
|
|
||||||
"times": PackedFloat32Array(0)
|
|
||||||
}
|
|
||||||
tracks/1/type = "bezier"
|
|
||||||
tracks/1/imported = false
|
|
||||||
tracks/1/enabled = true
|
|
||||||
tracks/1/path = NodePath("..:rotation:z")
|
|
||||||
tracks/1/interp = 1
|
|
||||||
tracks/1/loop_wrap = true
|
|
||||||
tracks/1/keys = {
|
|
||||||
"handle_modes": PackedInt32Array(0),
|
|
||||||
"points": PackedFloat32Array(0, -0.15, 0, 0.15, 0),
|
|
||||||
"times": PackedFloat32Array(0)
|
|
||||||
}
|
|
||||||
|
|
||||||
[sub_resource type="AnimationLibrary" id="AnimationLibrary_0hyrq"]
|
[sub_resource type="AnimationLibrary" id="AnimationLibrary_0hyrq"]
|
||||||
_data = {
|
_data = {
|
||||||
&"RESET": SubResource("Animation_urko7"),
|
&"RESET": SubResource("Animation_urko7"),
|
||||||
@@ -77,41 +69,6 @@ transform = Transform3D(1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994, 0, 0, 0)
|
|||||||
current = true
|
current = true
|
||||||
fov = 90.0
|
fov = 90.0
|
||||||
|
|
||||||
[node name="CLVignette(Layer_1)" type="CanvasLayer" parent="CameraSmooth/Camera3D"]
|
|
||||||
|
|
||||||
[node name="HealthVignetteRect" type="ColorRect" parent="CameraSmooth/Camera3D/CLVignette(Layer_1)"]
|
|
||||||
material = ExtResource("2_urko7")
|
|
||||||
anchors_preset = 15
|
|
||||||
anchor_right = 1.0
|
|
||||||
anchor_bottom = 1.0
|
|
||||||
grow_horizontal = 2
|
|
||||||
grow_vertical = 2
|
|
||||||
mouse_filter = 2
|
|
||||||
|
|
||||||
[node name="CLDistortion(Layer_2)" type="CanvasLayer" parent="CameraSmooth/Camera3D"]
|
|
||||||
layer = 2
|
|
||||||
|
|
||||||
[node name="HealthDistortionRect" type="ColorRect" parent="CameraSmooth/Camera3D/CLDistortion(Layer_2)"]
|
|
||||||
material = ExtResource("3_0hyrq")
|
|
||||||
anchors_preset = 15
|
|
||||||
anchor_right = 1.0
|
|
||||||
anchor_bottom = 1.0
|
|
||||||
grow_horizontal = 2
|
|
||||||
grow_vertical = 2
|
|
||||||
mouse_filter = 2
|
|
||||||
|
|
||||||
[node name="CLBlur(Layer_2)" type="CanvasLayer" parent="CameraSmooth/Camera3D"]
|
|
||||||
layer = 2
|
|
||||||
|
|
||||||
[node name="BlurRect" type="ColorRect" parent="CameraSmooth/Camera3D/CLBlur(Layer_2)"]
|
|
||||||
material = SubResource("ShaderMaterial_o1np4")
|
|
||||||
anchors_preset = 15
|
|
||||||
anchor_right = 1.0
|
|
||||||
anchor_bottom = 1.0
|
|
||||||
grow_horizontal = 2
|
|
||||||
grow_vertical = 2
|
|
||||||
mouse_filter = 2
|
|
||||||
|
|
||||||
[node name="RayCast3D" type="RayCast3D" parent="CameraSmooth/Camera3D"]
|
[node name="RayCast3D" type="RayCast3D" parent="CameraSmooth/Camera3D"]
|
||||||
transform = Transform3D(1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, -0.64723)
|
transform = Transform3D(1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, -0.64723)
|
||||||
visible = false
|
visible = false
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[gd_resource type="Resource" script_class="GUIDEMappingContext" load_steps=78 format=3 uid="uid://c2hpxkcujyc13"]
|
[gd_resource type="Resource" script_class="GUIDEMappingContext" load_steps=66 format=3 uid="uid://c2hpxkcujyc13"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://cpplm41b5bt6m" path="res://addons/guide/guide_action_mapping.gd" id="1_xno0b"]
|
[ext_resource type="Script" uid="uid://cpplm41b5bt6m" path="res://addons/guide/guide_action_mapping.gd" id="1_xno0b"]
|
||||||
[ext_resource type="Resource" uid="uid://ck43v3q5ype3f" path="res://systems/inputs/menu_mode/back.tres" id="2_6sfub"]
|
[ext_resource type="Resource" uid="uid://ck43v3q5ype3f" path="res://systems/inputs/menu_mode/back.tres" id="2_6sfub"]
|
||||||
@@ -16,7 +16,6 @@
|
|||||||
[ext_resource type="Resource" uid="uid://by80bubgg0dpx" path="res://systems/inputs/menu_mode/left.tres" id="13_sy651"]
|
[ext_resource type="Resource" uid="uid://by80bubgg0dpx" path="res://systems/inputs/menu_mode/left.tres" id="13_sy651"]
|
||||||
[ext_resource type="Resource" uid="uid://bmef0jo6o41ic" path="res://systems/inputs/menu_mode/next.tres" id="14_2sr1w"]
|
[ext_resource type="Resource" uid="uid://bmef0jo6o41ic" path="res://systems/inputs/menu_mode/next.tres" id="14_2sr1w"]
|
||||||
[ext_resource type="Resource" uid="uid://c3n6ww58cmbbk" path="res://systems/inputs/menu_mode/previous.tres" id="15_2j2sf"]
|
[ext_resource type="Resource" uid="uid://c3n6ww58cmbbk" path="res://systems/inputs/menu_mode/previous.tres" id="15_2j2sf"]
|
||||||
[ext_resource type="Resource" uid="uid://dgluj0ql5vth7" path="res://systems/inputs/base_mode/pause.tres" id="16_scydb"]
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_tp5dr"]
|
[sub_resource type="Resource" id="Resource_tp5dr"]
|
||||||
script = ExtResource("4_q6ncx")
|
script = ExtResource("4_q6ncx")
|
||||||
@@ -30,16 +29,11 @@ script = ExtResource("3_scydb")
|
|||||||
input = SubResource("Resource_tp5dr")
|
input = SubResource("Resource_tp5dr")
|
||||||
triggers = Array[ExtResource("6_c647i")]([SubResource("Resource_lvbl0")])
|
triggers = Array[ExtResource("6_c647i")]([SubResource("Resource_lvbl0")])
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_h2f8g"]
|
|
||||||
script = ExtResource("8_yfqfy")
|
|
||||||
key = 4194305
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_17mt7"]
|
[sub_resource type="Resource" id="Resource_17mt7"]
|
||||||
script = ExtResource("7_m88dc")
|
script = ExtResource("7_m88dc")
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_23hmj"]
|
[sub_resource type="Resource" id="Resource_23hmj"]
|
||||||
script = ExtResource("3_scydb")
|
script = ExtResource("3_scydb")
|
||||||
input = SubResource("Resource_h2f8g")
|
|
||||||
triggers = Array[ExtResource("6_c647i")]([SubResource("Resource_17mt7")])
|
triggers = Array[ExtResource("6_c647i")]([SubResource("Resource_17mt7")])
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_len71"]
|
[sub_resource type="Resource" id="Resource_len71"]
|
||||||
@@ -225,48 +219,7 @@ script = ExtResource("1_xno0b")
|
|||||||
action = ExtResource("15_2j2sf")
|
action = ExtResource("15_2j2sf")
|
||||||
input_mappings = Array[ExtResource("3_scydb")]([SubResource("Resource_3owmx")])
|
input_mappings = Array[ExtResource("3_scydb")]([SubResource("Resource_3owmx")])
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_q6ncx"]
|
|
||||||
script = ExtResource("4_q6ncx")
|
|
||||||
button = 4
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_vnf02"]
|
|
||||||
script = ExtResource("7_m88dc")
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_c647i"]
|
|
||||||
script = ExtResource("3_scydb")
|
|
||||||
input = SubResource("Resource_q6ncx")
|
|
||||||
triggers = Array[ExtResource("6_c647i")]([SubResource("Resource_vnf02")])
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_m88dc"]
|
|
||||||
script = ExtResource("4_q6ncx")
|
|
||||||
button = 6
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_yfqfy"]
|
|
||||||
script = ExtResource("7_m88dc")
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_dsdj3"]
|
|
||||||
script = ExtResource("3_scydb")
|
|
||||||
input = SubResource("Resource_m88dc")
|
|
||||||
triggers = Array[ExtResource("6_c647i")]([SubResource("Resource_yfqfy")])
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_q44ew"]
|
|
||||||
script = ExtResource("8_yfqfy")
|
|
||||||
key = 4194305
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_as826"]
|
|
||||||
script = ExtResource("7_m88dc")
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_erftc"]
|
|
||||||
script = ExtResource("3_scydb")
|
|
||||||
input = SubResource("Resource_q44ew")
|
|
||||||
triggers = Array[ExtResource("6_c647i")]([SubResource("Resource_as826")])
|
|
||||||
|
|
||||||
[sub_resource type="Resource" id="Resource_sy651"]
|
|
||||||
script = ExtResource("1_xno0b")
|
|
||||||
action = ExtResource("16_scydb")
|
|
||||||
input_mappings = Array[ExtResource("3_scydb")]([SubResource("Resource_c647i"), SubResource("Resource_dsdj3"), SubResource("Resource_erftc")])
|
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
script = ExtResource("2_w5wm7")
|
script = ExtResource("2_w5wm7")
|
||||||
mappings = Array[ExtResource("1_xno0b")]([SubResource("Resource_len71"), SubResource("Resource_ruq4f"), SubResource("Resource_5hp22"), SubResource("Resource_7i3b3"), SubResource("Resource_6ptcp"), SubResource("Resource_xked7"), SubResource("Resource_qjv8h"), SubResource("Resource_p0ahg"), SubResource("Resource_sy651")])
|
mappings = Array[ExtResource("1_xno0b")]([SubResource("Resource_len71"), SubResource("Resource_ruq4f"), SubResource("Resource_5hp22"), SubResource("Resource_7i3b3"), SubResource("Resource_6ptcp"), SubResource("Resource_xked7"), SubResource("Resource_qjv8h"), SubResource("Resource_p0ahg")])
|
||||||
metadata/_custom_type_script = "uid://dsa1dnifd6w32"
|
metadata/_custom_type_script = "uid://dsa1dnifd6w32"
|
||||||
|
|||||||
Reference in New Issue
Block a user