From c18a7746f715f63eee5041fa9e00c534a0285aed Mon Sep 17 00:00:00 2001 From: Haze Weathers Date: Thu, 27 Feb 2025 04:54:27 -0500 Subject: [PATCH] update to godot 4.4 --- addons/godot_state_charts/all_of_guard.gd.uid | 1 + .../godot_state_charts/animation_player_state.gd.uid | 1 + .../godot_state_charts/animation_tree_state.gd.uid | 1 + addons/godot_state_charts/any_of_guard.gd.uid | 1 + addons/godot_state_charts/atomic_state.gd.uid | 1 + addons/godot_state_charts/compound_state.gd.uid | 1 + addons/godot_state_charts/debug_util.gd.uid | 1 + addons/godot_state_charts/expression_guard.gd.uid | 1 + addons/godot_state_charts/expression_util.gd.uid | 1 + addons/godot_state_charts/godot_state_charts.gd.uid | 1 + addons/godot_state_charts/guard.gd.uid | 1 + addons/godot_state_charts/history_state.gd.uid | 1 + addons/godot_state_charts/not_guard.gd.uid | 1 + addons/godot_state_charts/parallel_state.gd.uid | 1 + addons/godot_state_charts/saved_state.gd.uid | 1 + addons/godot_state_charts/state_chart.gd.uid | 1 + addons/godot_state_charts/state_chart_state.gd.uid | 1 + .../godot_state_charts/state_is_active_guard.gd.uid | 1 + addons/godot_state_charts/transition.gd.uid | 1 + .../utilities/debugger_history.gd.uid | 1 + .../utilities/editor_debugger/editor_debugger.gd.uid | 1 + .../utilities/editor_debugger/editor_debugger.tscn | 2 +- .../editor_debugger/editor_debugger_message.gd.uid | 1 + .../editor_debugger/editor_debugger_plugin.gd.uid | 1 + .../editor_debugger/editor_debugger_remote.gd.uid | 1 + .../editor_debugger_settings_propagator.gd.uid | 1 + .../editor_debugger_state_info.gd.uid | 1 + .../utilities/editor_sidebar.gd.uid | 1 + .../godot_state_charts/utilities/editor_sidebar.tscn | 2 +- .../utilities/event_editor/event_editor.gd.uid | 1 + .../event_editor/event_inspector_plugin.gd.uid | 1 + .../utilities/event_refactor/event_refactor.gd.uid | 1 + .../utilities/event_refactor/event_refactor.tscn | 2 +- .../godot_state_charts/utilities/ring_buffer.gd.uid | 1 + .../utilities/state_chart_debugger.gd.uid | 1 + .../utilities/state_chart_debugger.tscn | 2 +- .../utilities/state_chart_util.gd.uid | 1 + assets/models/enemies/boney.glb.import | 1 + assets/models/tiles/w1_walls.glb.import | 1 + assets/shaders/barber_shop.gdshader.uid | 1 + assets/shaders/confetti_spin.gdshader.uid | 1 + assets/shaders/flag.gdshader.uid | 1 + assets/shaders/horizontal_world_uv.gdshader.uid | 1 + autoloads/scene_manager.gd.uid | 1 + autoloads/scene_manager.tscn | 2 +- levels/level.gd.uid | 1 + levels/level_set.gd | 2 ++ levels/level_set.gd.uid | 1 + levels/w1/1_01.tscn | 6 +++--- objects/canny_cat.gd.uid | 1 + objects/canny_cat.tscn | 12 ++++++------ objects/goal_post.gd.uid | 1 + objects/goal_post.tscn | 6 +++--- objects/sand_pit.gd.uid | 1 + objects/sand_pit.tscn | 6 +++--- objects/skull.gd.uid | 1 + objects/skull.tscn | 2 +- objects/waterman_pole.gd.uid | 1 + objects/waterman_pole.tscn | 4 ++-- project.godot | 2 +- 60 files changed, 73 insertions(+), 24 deletions(-) create mode 100644 addons/godot_state_charts/all_of_guard.gd.uid create mode 100644 addons/godot_state_charts/animation_player_state.gd.uid create mode 100644 addons/godot_state_charts/animation_tree_state.gd.uid create mode 100644 addons/godot_state_charts/any_of_guard.gd.uid create mode 100644 addons/godot_state_charts/atomic_state.gd.uid create mode 100644 addons/godot_state_charts/compound_state.gd.uid create mode 100644 addons/godot_state_charts/debug_util.gd.uid create mode 100644 addons/godot_state_charts/expression_guard.gd.uid create mode 100644 addons/godot_state_charts/expression_util.gd.uid create mode 100644 addons/godot_state_charts/godot_state_charts.gd.uid create mode 100644 addons/godot_state_charts/guard.gd.uid create mode 100644 addons/godot_state_charts/history_state.gd.uid create mode 100644 addons/godot_state_charts/not_guard.gd.uid create mode 100644 addons/godot_state_charts/parallel_state.gd.uid create mode 100644 addons/godot_state_charts/saved_state.gd.uid create mode 100644 addons/godot_state_charts/state_chart.gd.uid create mode 100644 addons/godot_state_charts/state_chart_state.gd.uid create mode 100644 addons/godot_state_charts/state_is_active_guard.gd.uid create mode 100644 addons/godot_state_charts/transition.gd.uid create mode 100644 addons/godot_state_charts/utilities/debugger_history.gd.uid create mode 100644 addons/godot_state_charts/utilities/editor_debugger/editor_debugger.gd.uid create mode 100644 addons/godot_state_charts/utilities/editor_debugger/editor_debugger_message.gd.uid create mode 100644 addons/godot_state_charts/utilities/editor_debugger/editor_debugger_plugin.gd.uid create mode 100644 addons/godot_state_charts/utilities/editor_debugger/editor_debugger_remote.gd.uid create mode 100644 addons/godot_state_charts/utilities/editor_debugger/editor_debugger_settings_propagator.gd.uid create mode 100644 addons/godot_state_charts/utilities/editor_debugger/editor_debugger_state_info.gd.uid create mode 100644 addons/godot_state_charts/utilities/editor_sidebar.gd.uid create mode 100644 addons/godot_state_charts/utilities/event_editor/event_editor.gd.uid create mode 100644 addons/godot_state_charts/utilities/event_editor/event_inspector_plugin.gd.uid create mode 100644 addons/godot_state_charts/utilities/event_refactor/event_refactor.gd.uid create mode 100644 addons/godot_state_charts/utilities/ring_buffer.gd.uid create mode 100644 addons/godot_state_charts/utilities/state_chart_debugger.gd.uid create mode 100644 addons/godot_state_charts/utilities/state_chart_util.gd.uid create mode 100644 assets/shaders/barber_shop.gdshader.uid create mode 100644 assets/shaders/confetti_spin.gdshader.uid create mode 100644 assets/shaders/flag.gdshader.uid create mode 100644 assets/shaders/horizontal_world_uv.gdshader.uid create mode 100644 autoloads/scene_manager.gd.uid create mode 100644 levels/level.gd.uid create mode 100644 levels/level_set.gd create mode 100644 levels/level_set.gd.uid create mode 100644 objects/canny_cat.gd.uid create mode 100644 objects/goal_post.gd.uid create mode 100644 objects/sand_pit.gd.uid create mode 100644 objects/skull.gd.uid create mode 100644 objects/waterman_pole.gd.uid diff --git a/addons/godot_state_charts/all_of_guard.gd.uid b/addons/godot_state_charts/all_of_guard.gd.uid new file mode 100644 index 0000000..2e7fa40 --- /dev/null +++ b/addons/godot_state_charts/all_of_guard.gd.uid @@ -0,0 +1 @@ +uid://2pwfgn2flltv diff --git a/addons/godot_state_charts/animation_player_state.gd.uid b/addons/godot_state_charts/animation_player_state.gd.uid new file mode 100644 index 0000000..6c30087 --- /dev/null +++ b/addons/godot_state_charts/animation_player_state.gd.uid @@ -0,0 +1 @@ +uid://crxj3l27001sa diff --git a/addons/godot_state_charts/animation_tree_state.gd.uid b/addons/godot_state_charts/animation_tree_state.gd.uid new file mode 100644 index 0000000..cf74d28 --- /dev/null +++ b/addons/godot_state_charts/animation_tree_state.gd.uid @@ -0,0 +1 @@ +uid://kp3w6nr5fvhg diff --git a/addons/godot_state_charts/any_of_guard.gd.uid b/addons/godot_state_charts/any_of_guard.gd.uid new file mode 100644 index 0000000..f9a5c67 --- /dev/null +++ b/addons/godot_state_charts/any_of_guard.gd.uid @@ -0,0 +1 @@ +uid://c0dlakdcpci0o diff --git a/addons/godot_state_charts/atomic_state.gd.uid b/addons/godot_state_charts/atomic_state.gd.uid new file mode 100644 index 0000000..5985b1b --- /dev/null +++ b/addons/godot_state_charts/atomic_state.gd.uid @@ -0,0 +1 @@ +uid://kctk5uejlaoh diff --git a/addons/godot_state_charts/compound_state.gd.uid b/addons/godot_state_charts/compound_state.gd.uid new file mode 100644 index 0000000..6f7ef93 --- /dev/null +++ b/addons/godot_state_charts/compound_state.gd.uid @@ -0,0 +1 @@ +uid://1csmnvxpk1j3 diff --git a/addons/godot_state_charts/debug_util.gd.uid b/addons/godot_state_charts/debug_util.gd.uid new file mode 100644 index 0000000..004a522 --- /dev/null +++ b/addons/godot_state_charts/debug_util.gd.uid @@ -0,0 +1 @@ +uid://1x6hwwkl021m diff --git a/addons/godot_state_charts/expression_guard.gd.uid b/addons/godot_state_charts/expression_guard.gd.uid new file mode 100644 index 0000000..fb14e4e --- /dev/null +++ b/addons/godot_state_charts/expression_guard.gd.uid @@ -0,0 +1 @@ +uid://m32s76pjucg7 diff --git a/addons/godot_state_charts/expression_util.gd.uid b/addons/godot_state_charts/expression_util.gd.uid new file mode 100644 index 0000000..f9995f6 --- /dev/null +++ b/addons/godot_state_charts/expression_util.gd.uid @@ -0,0 +1 @@ +uid://4f7muthq014i diff --git a/addons/godot_state_charts/godot_state_charts.gd.uid b/addons/godot_state_charts/godot_state_charts.gd.uid new file mode 100644 index 0000000..2bfdada --- /dev/null +++ b/addons/godot_state_charts/godot_state_charts.gd.uid @@ -0,0 +1 @@ +uid://cje5ay4xktxgv diff --git a/addons/godot_state_charts/guard.gd.uid b/addons/godot_state_charts/guard.gd.uid new file mode 100644 index 0000000..1675437 --- /dev/null +++ b/addons/godot_state_charts/guard.gd.uid @@ -0,0 +1 @@ +uid://7byord465lig diff --git a/addons/godot_state_charts/history_state.gd.uid b/addons/godot_state_charts/history_state.gd.uid new file mode 100644 index 0000000..5a88c26 --- /dev/null +++ b/addons/godot_state_charts/history_state.gd.uid @@ -0,0 +1 @@ +uid://2weu7mtvi6em diff --git a/addons/godot_state_charts/not_guard.gd.uid b/addons/godot_state_charts/not_guard.gd.uid new file mode 100644 index 0000000..7f7d37e --- /dev/null +++ b/addons/godot_state_charts/not_guard.gd.uid @@ -0,0 +1 @@ +uid://7wsknicmgrql diff --git a/addons/godot_state_charts/parallel_state.gd.uid b/addons/godot_state_charts/parallel_state.gd.uid new file mode 100644 index 0000000..4342cf5 --- /dev/null +++ b/addons/godot_state_charts/parallel_state.gd.uid @@ -0,0 +1 @@ +uid://baiit8725r4cs diff --git a/addons/godot_state_charts/saved_state.gd.uid b/addons/godot_state_charts/saved_state.gd.uid new file mode 100644 index 0000000..640a02c --- /dev/null +++ b/addons/godot_state_charts/saved_state.gd.uid @@ -0,0 +1 @@ +uid://buwudikx3c5vx diff --git a/addons/godot_state_charts/state_chart.gd.uid b/addons/godot_state_charts/state_chart.gd.uid new file mode 100644 index 0000000..bb07f68 --- /dev/null +++ b/addons/godot_state_charts/state_chart.gd.uid @@ -0,0 +1 @@ +uid://dsjiox4ahsvqn diff --git a/addons/godot_state_charts/state_chart_state.gd.uid b/addons/godot_state_charts/state_chart_state.gd.uid new file mode 100644 index 0000000..a00d66e --- /dev/null +++ b/addons/godot_state_charts/state_chart_state.gd.uid @@ -0,0 +1 @@ +uid://dbbk2a6bon8v0 diff --git a/addons/godot_state_charts/state_is_active_guard.gd.uid b/addons/godot_state_charts/state_is_active_guard.gd.uid new file mode 100644 index 0000000..dbe0391 --- /dev/null +++ b/addons/godot_state_charts/state_is_active_guard.gd.uid @@ -0,0 +1 @@ +uid://bq013yyrrbvnm diff --git a/addons/godot_state_charts/transition.gd.uid b/addons/godot_state_charts/transition.gd.uid new file mode 100644 index 0000000..dc75ad2 --- /dev/null +++ b/addons/godot_state_charts/transition.gd.uid @@ -0,0 +1 @@ +uid://clasig0wood63 diff --git a/addons/godot_state_charts/utilities/debugger_history.gd.uid b/addons/godot_state_charts/utilities/debugger_history.gd.uid new file mode 100644 index 0000000..05ab9be --- /dev/null +++ b/addons/godot_state_charts/utilities/debugger_history.gd.uid @@ -0,0 +1 @@ +uid://bde4yjgbmjn5y diff --git a/addons/godot_state_charts/utilities/editor_debugger/editor_debugger.gd.uid b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger.gd.uid new file mode 100644 index 0000000..9a1830e --- /dev/null +++ b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger.gd.uid @@ -0,0 +1 @@ +uid://fkbjjsmb60j6 diff --git a/addons/godot_state_charts/utilities/editor_debugger/editor_debugger.tscn b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger.tscn index f52bd05..6e50759 100644 --- a/addons/godot_state_charts/utilities/editor_debugger/editor_debugger.tscn +++ b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=3 uid="uid://donfbhh5giyfy"] -[ext_resource type="Script" path="res://addons/godot_state_charts/utilities/editor_debugger/editor_debugger.gd" id="1_ia1de"] +[ext_resource type="Script" uid="uid://fkbjjsmb60j6" path="res://addons/godot_state_charts/utilities/editor_debugger/editor_debugger.gd" id="1_ia1de"] [node name="State Charts" type="VBoxContainer"] anchors_preset = 15 diff --git a/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_message.gd.uid b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_message.gd.uid new file mode 100644 index 0000000..b3fd848 --- /dev/null +++ b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_message.gd.uid @@ -0,0 +1 @@ +uid://dvu74pnu5lwbq diff --git a/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_plugin.gd.uid b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_plugin.gd.uid new file mode 100644 index 0000000..40a6030 --- /dev/null +++ b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_plugin.gd.uid @@ -0,0 +1 @@ +uid://dyc5byyhwbnr0 diff --git a/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_remote.gd.uid b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_remote.gd.uid new file mode 100644 index 0000000..390dd4e --- /dev/null +++ b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_remote.gd.uid @@ -0,0 +1 @@ +uid://c7i62ol7vk1se diff --git a/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_settings_propagator.gd.uid b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_settings_propagator.gd.uid new file mode 100644 index 0000000..f59f5da --- /dev/null +++ b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_settings_propagator.gd.uid @@ -0,0 +1 @@ +uid://ble5gksncbe7n diff --git a/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_state_info.gd.uid b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_state_info.gd.uid new file mode 100644 index 0000000..fc7518a --- /dev/null +++ b/addons/godot_state_charts/utilities/editor_debugger/editor_debugger_state_info.gd.uid @@ -0,0 +1 @@ +uid://cm44gvum3wl0i diff --git a/addons/godot_state_charts/utilities/editor_sidebar.gd.uid b/addons/godot_state_charts/utilities/editor_sidebar.gd.uid new file mode 100644 index 0000000..4bd9b5f --- /dev/null +++ b/addons/godot_state_charts/utilities/editor_sidebar.gd.uid @@ -0,0 +1 @@ +uid://cm6kei7xi15jq diff --git a/addons/godot_state_charts/utilities/editor_sidebar.tscn b/addons/godot_state_charts/utilities/editor_sidebar.tscn index dd631c2..34fc9a0 100644 --- a/addons/godot_state_charts/utilities/editor_sidebar.tscn +++ b/addons/godot_state_charts/utilities/editor_sidebar.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=8 format=3 uid="uid://bephgxrkhh3e2"] -[ext_resource type="Script" path="res://addons/godot_state_charts/utilities/editor_sidebar.gd" id="1_7kcy8"] +[ext_resource type="Script" uid="uid://cm6kei7xi15jq" path="res://addons/godot_state_charts/utilities/editor_sidebar.gd" id="1_7kcy8"] [ext_resource type="Texture2D" uid="uid://c4ojtah20jtxc" path="res://addons/godot_state_charts/atomic_state.svg" id="2_0k4pg"] [ext_resource type="Texture2D" uid="uid://bbudjoa3ds4qj" path="res://addons/godot_state_charts/compound_state.svg" id="3_b4okj"] [ext_resource type="Texture2D" uid="uid://dsa1nco51br8d" path="res://addons/godot_state_charts/parallel_state.svg" id="4_lmfic"] diff --git a/addons/godot_state_charts/utilities/event_editor/event_editor.gd.uid b/addons/godot_state_charts/utilities/event_editor/event_editor.gd.uid new file mode 100644 index 0000000..fb07cb8 --- /dev/null +++ b/addons/godot_state_charts/utilities/event_editor/event_editor.gd.uid @@ -0,0 +1 @@ +uid://bx78qgbch2n2w diff --git a/addons/godot_state_charts/utilities/event_editor/event_inspector_plugin.gd.uid b/addons/godot_state_charts/utilities/event_editor/event_inspector_plugin.gd.uid new file mode 100644 index 0000000..4967679 --- /dev/null +++ b/addons/godot_state_charts/utilities/event_editor/event_inspector_plugin.gd.uid @@ -0,0 +1 @@ +uid://bnflganrjhst8 diff --git a/addons/godot_state_charts/utilities/event_refactor/event_refactor.gd.uid b/addons/godot_state_charts/utilities/event_refactor/event_refactor.gd.uid new file mode 100644 index 0000000..b1aeaf5 --- /dev/null +++ b/addons/godot_state_charts/utilities/event_refactor/event_refactor.gd.uid @@ -0,0 +1 @@ +uid://ce8s0mg7ebk3f diff --git a/addons/godot_state_charts/utilities/event_refactor/event_refactor.tscn b/addons/godot_state_charts/utilities/event_refactor/event_refactor.tscn index 8f85eb7..8bc2daa 100644 --- a/addons/godot_state_charts/utilities/event_refactor/event_refactor.tscn +++ b/addons/godot_state_charts/utilities/event_refactor/event_refactor.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=3 uid="uid://cvlabg8e2qbk3"] -[ext_resource type="Script" path="res://addons/godot_state_charts/utilities/event_refactor/event_refactor.gd" id="1_hh1x6"] +[ext_resource type="Script" uid="uid://ce8s0mg7ebk3f" path="res://addons/godot_state_charts/utilities/event_refactor/event_refactor.gd" id="1_hh1x6"] [node name="event_refactor" type="ConfirmationDialog"] initial_position = 1 diff --git a/addons/godot_state_charts/utilities/ring_buffer.gd.uid b/addons/godot_state_charts/utilities/ring_buffer.gd.uid new file mode 100644 index 0000000..21c280e --- /dev/null +++ b/addons/godot_state_charts/utilities/ring_buffer.gd.uid @@ -0,0 +1 @@ +uid://imce1qdnxl8n diff --git a/addons/godot_state_charts/utilities/state_chart_debugger.gd.uid b/addons/godot_state_charts/utilities/state_chart_debugger.gd.uid new file mode 100644 index 0000000..614b701 --- /dev/null +++ b/addons/godot_state_charts/utilities/state_chart_debugger.gd.uid @@ -0,0 +1 @@ +uid://b8ollw5mltgtm diff --git a/addons/godot_state_charts/utilities/state_chart_debugger.tscn b/addons/godot_state_charts/utilities/state_chart_debugger.tscn index e5daa7d..d02736e 100644 --- a/addons/godot_state_charts/utilities/state_chart_debugger.tscn +++ b/addons/godot_state_charts/utilities/state_chart_debugger.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=3 uid="uid://bcwkugn6v3oy7"] -[ext_resource type="Script" path="res://addons/godot_state_charts/utilities/state_chart_debugger.gd" id="1_i74os"] +[ext_resource type="Script" uid="uid://b8ollw5mltgtm" path="res://addons/godot_state_charts/utilities/state_chart_debugger.gd" id="1_i74os"] [node name="StateChartDebugger" type="MarginContainer"] anchors_preset = 15 diff --git a/addons/godot_state_charts/utilities/state_chart_util.gd.uid b/addons/godot_state_charts/utilities/state_chart_util.gd.uid new file mode 100644 index 0000000..1157c6e --- /dev/null +++ b/addons/godot_state_charts/utilities/state_chart_util.gd.uid @@ -0,0 +1 @@ +uid://bjmsdtahinvlk diff --git a/assets/models/enemies/boney.glb.import b/assets/models/enemies/boney.glb.import index 4404602..5fc0357 100644 --- a/assets/models/enemies/boney.glb.import +++ b/assets/models/enemies/boney.glb.import @@ -18,6 +18,7 @@ nodes/root_name="" nodes/apply_root_scale=true nodes/root_scale=1.0 nodes/import_as_skeleton_bones=false +nodes/use_node_type_suffixes=true meshes/ensure_tangents=true meshes/generate_lods=true meshes/create_shadow_meshes=true diff --git a/assets/models/tiles/w1_walls.glb.import b/assets/models/tiles/w1_walls.glb.import index a56a2b7..c5dd66b 100644 --- a/assets/models/tiles/w1_walls.glb.import +++ b/assets/models/tiles/w1_walls.glb.import @@ -18,6 +18,7 @@ nodes/root_name="" nodes/apply_root_scale=true nodes/root_scale=1.0 nodes/import_as_skeleton_bones=false +nodes/use_node_type_suffixes=true meshes/ensure_tangents=true meshes/generate_lods=true meshes/create_shadow_meshes=true diff --git a/assets/shaders/barber_shop.gdshader.uid b/assets/shaders/barber_shop.gdshader.uid new file mode 100644 index 0000000..565442f --- /dev/null +++ b/assets/shaders/barber_shop.gdshader.uid @@ -0,0 +1 @@ +uid://2vowejmm8ams diff --git a/assets/shaders/confetti_spin.gdshader.uid b/assets/shaders/confetti_spin.gdshader.uid new file mode 100644 index 0000000..8d5b785 --- /dev/null +++ b/assets/shaders/confetti_spin.gdshader.uid @@ -0,0 +1 @@ +uid://bwh16agcnae24 diff --git a/assets/shaders/flag.gdshader.uid b/assets/shaders/flag.gdshader.uid new file mode 100644 index 0000000..07f55a8 --- /dev/null +++ b/assets/shaders/flag.gdshader.uid @@ -0,0 +1 @@ +uid://bk3ssuhuvbahl diff --git a/assets/shaders/horizontal_world_uv.gdshader.uid b/assets/shaders/horizontal_world_uv.gdshader.uid new file mode 100644 index 0000000..537b9c4 --- /dev/null +++ b/assets/shaders/horizontal_world_uv.gdshader.uid @@ -0,0 +1 @@ +uid://c3y1ht34ep01k diff --git a/autoloads/scene_manager.gd.uid b/autoloads/scene_manager.gd.uid new file mode 100644 index 0000000..bb7ac2c --- /dev/null +++ b/autoloads/scene_manager.gd.uid @@ -0,0 +1 @@ +uid://dno6wobc85qrw diff --git a/autoloads/scene_manager.tscn b/autoloads/scene_manager.tscn index fb7b332..7f3b842 100644 --- a/autoloads/scene_manager.tscn +++ b/autoloads/scene_manager.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=3 uid="uid://dxrvocxjk8vs3"] -[ext_resource type="Script" path="res://autoloads/scene_manager.gd" id="1_d112a"] +[ext_resource type="Script" uid="uid://dno6wobc85qrw" path="res://autoloads/scene_manager.gd" id="1_d112a"] [node name="SceneManager" type="Node" node_paths=PackedStringArray("scene_parent")] script = ExtResource("1_d112a") diff --git a/levels/level.gd.uid b/levels/level.gd.uid new file mode 100644 index 0000000..3075015 --- /dev/null +++ b/levels/level.gd.uid @@ -0,0 +1 @@ +uid://vydhlp6ju8bw diff --git a/levels/level_set.gd b/levels/level_set.gd new file mode 100644 index 0000000..14d483f --- /dev/null +++ b/levels/level_set.gd @@ -0,0 +1,2 @@ +class_name LevelSet +extends Resource diff --git a/levels/level_set.gd.uid b/levels/level_set.gd.uid new file mode 100644 index 0000000..93e3b9e --- /dev/null +++ b/levels/level_set.gd.uid @@ -0,0 +1 @@ +uid://pgfv21pnsipl diff --git a/levels/w1/1_01.tscn b/levels/w1/1_01.tscn index 24cb031..21c51c1 100644 --- a/levels/w1/1_01.tscn +++ b/levels/w1/1_01.tscn @@ -1,10 +1,10 @@ [gd_scene load_steps=14 format=3 uid="uid://bkas0lj53glkn"] -[ext_resource type="Script" path="res://levels/level.gd" id="1_r1ilo"] +[ext_resource type="Script" uid="uid://vydhlp6ju8bw" path="res://levels/level.gd" id="1_r1ilo"] [ext_resource type="MeshLibrary" uid="uid://bqxgr3arh0i7f" path="res://assets/mesh_libraries/w1/w1_walls.meshlib" id="2_81akk"] [ext_resource type="PackedScene" uid="uid://cybm74xwbsivx" path="res://objects/canny_cat.tscn" id="4_emyyh"] [ext_resource type="PackedScene" uid="uid://cdpgby3r6xe4n" path="res://objects/goal_post.tscn" id="5_oq0l4"] -[ext_resource type="Shader" path="res://assets/shaders/horizontal_world_uv.gdshader" id="6_ka4lg"] +[ext_resource type="Shader" uid="uid://c3y1ht34ep01k" path="res://assets/shaders/horizontal_world_uv.gdshader" id="6_ka4lg"] [ext_resource type="PackedScene" uid="uid://bfic5n608nc5j" path="res://objects/sand_pit.tscn" id="6_rlgmy"] [ext_resource type="Texture2D" uid="uid://cpmi7w2fwm2sf" path="res://assets/textures/world/checker_grass.png" id="7_3jvq7"] @@ -39,9 +39,9 @@ size = Vector2(32, 32) [sub_resource type="ShaderMaterial" id="ShaderMaterial_tpmcl"] render_priority = 0 shader = ExtResource("6_ka4lg") +shader_parameter/albedo_texture = ExtResource("7_3jvq7") shader_parameter/horizontal_uv_offset = Vector2(0, 0) shader_parameter/uv_scale = Vector2(0.5, 0.5) -shader_parameter/albedo_texture = ExtResource("7_3jvq7") [node name="Level" type="Node3D"] script = ExtResource("1_r1ilo") diff --git a/objects/canny_cat.gd.uid b/objects/canny_cat.gd.uid new file mode 100644 index 0000000..10cf52c --- /dev/null +++ b/objects/canny_cat.gd.uid @@ -0,0 +1 @@ +uid://b04ridmyf6571 diff --git a/objects/canny_cat.tscn b/objects/canny_cat.tscn index f65f169..754876e 100644 --- a/objects/canny_cat.tscn +++ b/objects/canny_cat.tscn @@ -1,17 +1,17 @@ [gd_scene load_steps=20 format=3 uid="uid://cybm74xwbsivx"] [ext_resource type="Texture2D" uid="uid://3i17aqnrspma" path="res://assets/textures/player/canny.png" id="1_cp4br"] -[ext_resource type="Script" path="res://objects/canny_cat.gd" id="1_twfq8"] +[ext_resource type="Script" uid="uid://b04ridmyf6571" path="res://objects/canny_cat.gd" id="1_twfq8"] [ext_resource type="Texture2D" uid="uid://bqg7vd5r7w8tm" path="res://assets/textures/shadow.png" id="2_fwt6m"] [ext_resource type="AudioStream" uid="uid://7u8a6osl4buo" path="res://assets/sounds/player/grab.ogg" id="4_hojxu"] -[ext_resource type="Script" path="res://addons/godot_state_charts/state_chart.gd" id="4_n67yk"] -[ext_resource type="Script" path="res://addons/godot_state_charts/compound_state.gd" id="5_ox6hb"] +[ext_resource type="Script" uid="uid://dsjiox4ahsvqn" path="res://addons/godot_state_charts/state_chart.gd" id="4_n67yk"] +[ext_resource type="Script" uid="uid://1csmnvxpk1j3" path="res://addons/godot_state_charts/compound_state.gd" id="5_ox6hb"] [ext_resource type="AudioStream" uid="uid://dis5fg68ese7r" path="res://assets/sounds/player/cancel.ogg" id="5_v6u4q"] [ext_resource type="AudioStream" uid="uid://dnyjfcq8m2r4f" path="res://assets/sounds/player/hit.ogg" id="6_a7neg"] -[ext_resource type="Script" path="res://addons/godot_state_charts/atomic_state.gd" id="6_bu01i"] +[ext_resource type="Script" uid="uid://kctk5uejlaoh" path="res://addons/godot_state_charts/atomic_state.gd" id="6_bu01i"] [ext_resource type="AudioStream" uid="uid://bv4plfa1oj3tf" path="res://assets/sounds/player/wall_bump.ogg" id="7_8ee3y"] -[ext_resource type="Script" path="res://addons/godot_state_charts/transition.gd" id="7_epv8h"] -[ext_resource type="Script" path="res://addons/godot_state_charts/expression_guard.gd" id="8_d5slg"] +[ext_resource type="Script" uid="uid://clasig0wood63" path="res://addons/godot_state_charts/transition.gd" id="7_epv8h"] +[ext_resource type="Script" uid="uid://m32s76pjucg7" path="res://addons/godot_state_charts/expression_guard.gd" id="8_d5slg"] [sub_resource type="Gradient" id="Gradient_u5ds4"] interpolation_mode = 2 diff --git a/objects/goal_post.gd.uid b/objects/goal_post.gd.uid new file mode 100644 index 0000000..5e0ceeb --- /dev/null +++ b/objects/goal_post.gd.uid @@ -0,0 +1 @@ +uid://dbec3pvrmeehx diff --git a/objects/goal_post.tscn b/objects/goal_post.tscn index d82a81e..553b938 100644 --- a/objects/goal_post.tscn +++ b/objects/goal_post.tscn @@ -1,9 +1,9 @@ [gd_scene load_steps=17 format=3 uid="uid://cdpgby3r6xe4n"] -[ext_resource type="Script" path="res://objects/goal_post.gd" id="1_08x2x"] -[ext_resource type="Shader" path="res://assets/shaders/flag.gdshader" id="2_xbid5"] +[ext_resource type="Script" uid="uid://dbec3pvrmeehx" path="res://objects/goal_post.gd" id="1_08x2x"] +[ext_resource type="Shader" uid="uid://bk3ssuhuvbahl" path="res://assets/shaders/flag.gdshader" id="2_xbid5"] [ext_resource type="Texture2D" uid="uid://cyxkbck2gs2wt" path="res://assets/textures/objects/goal_hole.png" id="3_yg6kd"] -[ext_resource type="Shader" path="res://assets/shaders/confetti_spin.gdshader" id="4_2tajh"] +[ext_resource type="Shader" uid="uid://bwh16agcnae24" path="res://assets/shaders/confetti_spin.gdshader" id="4_2tajh"] [sub_resource type="Gradient" id="Gradient_lo531"] interpolation_mode = 1 diff --git a/objects/sand_pit.gd.uid b/objects/sand_pit.gd.uid new file mode 100644 index 0000000..0abddf8 --- /dev/null +++ b/objects/sand_pit.gd.uid @@ -0,0 +1 @@ +uid://b7vjcer1ah68k diff --git a/objects/sand_pit.tscn b/objects/sand_pit.tscn index a631116..ad04c5a 100644 --- a/objects/sand_pit.tscn +++ b/objects/sand_pit.tscn @@ -1,15 +1,15 @@ [gd_scene load_steps=5 format=3 uid="uid://bfic5n608nc5j"] -[ext_resource type="Shader" path="res://assets/shaders/horizontal_world_uv.gdshader" id="1_2mr0t"] +[ext_resource type="Shader" uid="uid://c3y1ht34ep01k" path="res://assets/shaders/horizontal_world_uv.gdshader" id="1_2mr0t"] [ext_resource type="Texture2D" uid="uid://djx2x3jjn01w2" path="res://assets/textures/world/sand.png" id="1_yg8om"] -[ext_resource type="Script" path="res://objects/sand_pit.gd" id="2_vtyum"] +[ext_resource type="Script" uid="uid://b7vjcer1ah68k" path="res://objects/sand_pit.gd" id="2_vtyum"] [sub_resource type="ShaderMaterial" id="ShaderMaterial_7s0pr"] render_priority = 0 shader = ExtResource("1_2mr0t") +shader_parameter/albedo_texture = ExtResource("1_yg8om") shader_parameter/horizontal_uv_offset = Vector2(0, 0) shader_parameter/uv_scale = Vector2(1, 1) -shader_parameter/albedo_texture = ExtResource("1_yg8om") [node name="SandPit" type="CSGPolygon3D" node_paths=PackedStringArray("collision_polygon")] process_physics_priority = 100 diff --git a/objects/skull.gd.uid b/objects/skull.gd.uid new file mode 100644 index 0000000..cbaee0e --- /dev/null +++ b/objects/skull.gd.uid @@ -0,0 +1 @@ +uid://cg1ki7xt2uvjl diff --git a/objects/skull.tscn b/objects/skull.tscn index 8dbfe54..0a14a59 100644 --- a/objects/skull.tscn +++ b/objects/skull.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=6 format=3 uid="uid://b4a8aif3iigdw"] -[ext_resource type="Script" path="res://objects/skull.gd" id="1_ledhy"] +[ext_resource type="Script" uid="uid://cg1ki7xt2uvjl" path="res://objects/skull.gd" id="1_ledhy"] [ext_resource type="PackedScene" uid="uid://46kyrtlb6b0a" path="res://assets/models/enemies/boney.glb" id="2_lwsb0"] [ext_resource type="AudioStream" uid="uid://cgotekctoej7m" path="res://assets/sounds/enemies/skull_death.ogg" id="3_6ybas"] diff --git a/objects/waterman_pole.gd.uid b/objects/waterman_pole.gd.uid new file mode 100644 index 0000000..0ca7413 --- /dev/null +++ b/objects/waterman_pole.gd.uid @@ -0,0 +1 @@ +uid://gqdkco5gmxpu diff --git a/objects/waterman_pole.tscn b/objects/waterman_pole.tscn index 8eb7da2..03a030a 100644 --- a/objects/waterman_pole.tscn +++ b/objects/waterman_pole.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=7 format=3 uid="uid://13qlrib2dk36"] -[ext_resource type="Script" path="res://objects/waterman_pole.gd" id="1_8whes"] -[ext_resource type="Shader" path="res://assets/shaders/barber_shop.gdshader" id="2_dukp0"] +[ext_resource type="Script" uid="uid://gqdkco5gmxpu" path="res://objects/waterman_pole.gd" id="1_8whes"] +[ext_resource type="Shader" uid="uid://2vowejmm8ams" path="res://assets/shaders/barber_shop.gdshader" id="2_dukp0"] [sub_resource type="ShaderMaterial" id="ShaderMaterial_2dh7w"] render_priority = 0 diff --git a/project.godot b/project.godot index 6fdb7e4..8a754ec 100644 --- a/project.godot +++ b/project.godot @@ -12,7 +12,7 @@ config_version=5 config/name="ucg-3d" run/main_scene="res://test_scene.tscn" -config/features=PackedStringArray("4.3", "GL Compatibility") +config/features=PackedStringArray("4.4", "GL Compatibility") config/icon="res://icon.svg" [autoload]