diff --git a/Net/multiplayer_world.gd b/Net/multiplayer_world.gd index ffeda23..3cbd1bc 100644 --- a/Net/multiplayer_world.gd +++ b/Net/multiplayer_world.gd @@ -23,6 +23,9 @@ const PLAYER_SCENE := preload("res://Player/net_player.tscn") var xr_interface: XRInterface var _populated := false +@export var items_spawner: MultiplayerSpawner +@export var players_spawner: MultiplayerSpawner + func _ready() -> void: xr_interface = XRServer.find_interface("OpenXR") @@ -30,7 +33,7 @@ func _ready() -> void: DisplayServer.window_set_vsync_mode(DisplayServer.VSYNC_DISABLED) get_viewport().use_xr = true - NetworkManager.register_world(self, $PlayersSpawner, $ItemsSpawner) + NetworkManager.register_world(self, players_spawner, items_spawner) NetworkManager.player_joined.connect(_on_player_joined) NetworkManager.player_left.connect(_on_player_left) NetworkManager.session_started.connect(_on_session_started) diff --git a/Scenes/AlgoScene.tscn b/Scenes/AlgoScene.tscn index 96de013..0cfcc23 100644 --- a/Scenes/AlgoScene.tscn +++ b/Scenes/AlgoScene.tscn @@ -1,22 +1,22 @@ [gd_scene format=3 uid="uid://22shbqdvnwgo"] [ext_resource type="Script" uid="uid://d1cefhe3yyyds" path="res://Net/multiplayer_world.gd" id="1_nlnup"] -[ext_resource type="PackedScene" uid="uid://j5s5wus7tuhb" path="res://prefabs/XROrigin.tscn" id="2_8pfaf"] -[ext_resource type="Material" uid="uid://cmia50cfqxxo4" path="res://textures/dev_material_3d.tres" id="3_gatbn"] -[ext_resource type="PackedScene" uid="uid://j7caslh27nor" path="res://stations/Hob.tscn" id="4_3lufs"] -[ext_resource type="Sky" uid="uid://c1abtpwhdm2d5" path="res://textures/sky/NightSkyHDRI009_16K.tres" id="5_kh26v"] -[ext_resource type="PackedScene" uid="uid://c6rift56ql3f8" path="res://stations/BurgerBunsDispenser.tscn" id="7_tejmp"] -[ext_resource type="PackedScene" uid="uid://dpot5qie20vf6" path="res://items/burger.tscn" id="9_rwx83"] -[ext_resource type="PackedScene" uid="uid://dvrk268s7gkxh" path="res://stations/sink.tscn" id="12_ah4xa"] -[ext_resource type="PackedScene" uid="uid://cnjwtnhwh0i8q" path="res://stations/dirt_station.tscn" id="13_46xi2"] -[ext_resource type="PackedScene" uid="uid://ck5tuftqmyiue" path="res://stations/plate_dispenser.tscn" id="14_h88sx"] -[ext_resource type="PackedScene" uid="uid://cwnwo4i28upap" path="res://stations/raw_burger_dispenser.tscn" id="15_m3h4l"] -[ext_resource type="PackedScene" uid="uid://efaec6ymgabo" path="res://stations/Counter.tscn" id="15_tpcje"] -[ext_resource type="PackedScene" uid="uid://caf0xanmxbshy" path="res://stations/table.tscn" id="16_g2k6a"] +[ext_resource type="PackedScene" uid="uid://j5s5wus7tuhb" path="res://Prefabs/XROrigin.tscn" id="2_8pfaf"] +[ext_resource type="Material" uid="uid://cmia50cfqxxo4" path="res://Textures/dev_material_3d.tres" id="3_gatbn"] +[ext_resource type="PackedScene" uid="uid://j7caslh27nor" path="res://Stations/Hob.tscn" id="4_3lufs"] +[ext_resource type="Sky" uid="uid://c1abtpwhdm2d5" path="res://Textures/sky/NightSkyHDRI009_16K.tres" id="5_kh26v"] +[ext_resource type="PackedScene" uid="uid://c6rift56ql3f8" path="res://Stations/BurgerBunsDispenser.tscn" id="7_tejmp"] +[ext_resource type="PackedScene" uid="uid://dpot5qie20vf6" path="res://Items/burger.tscn" id="9_rwx83"] +[ext_resource type="PackedScene" uid="uid://dvrk268s7gkxh" path="res://Stations/sink.tscn" id="12_ah4xa"] +[ext_resource type="PackedScene" uid="uid://cnjwtnhwh0i8q" path="res://Stations/dirt_station.tscn" id="13_46xi2"] +[ext_resource type="PackedScene" uid="uid://ck5tuftqmyiue" path="res://Stations/plate_dispenser.tscn" id="14_h88sx"] +[ext_resource type="PackedScene" uid="uid://cwnwo4i28upap" path="res://Stations/raw_burger_dispenser.tscn" id="15_m3h4l"] +[ext_resource type="PackedScene" uid="uid://efaec6ymgabo" path="res://Stations/Counter.tscn" id="15_tpcje"] +[ext_resource type="PackedScene" uid="uid://caf0xanmxbshy" path="res://Stations/table.tscn" id="16_g2k6a"] [ext_resource type="Script" uid="uid://k8ywnvlhcic4" path="res://test/testworldLoad.gd" id="16_m3h4l"] [ext_resource type="PackedScene" uid="uid://clujaf3u776a3" path="res://addons/godot-xr-tools/objects/viewport_2d_in_3d.tscn" id="17_gatbn"] [ext_resource type="PackedScene" uid="uid://xtcei2uvd5li" path="res://UI/game_over_panel.tscn" id="18_3lufs"] -[ext_resource type="Script" uid="uid://cwijoksyou1ey" path="res://prefabs/GameOvercontroler.gd" id="19_3lufs"] +[ext_resource type="Script" uid="uid://cwijoksyou1ey" path="res://Prefabs/GameOvercontroler.gd" id="19_3lufs"] [sub_resource type="BoxShape3D" id="BoxShape3D_vlqg6"] size = Vector3(16, 0.1, 16) diff --git a/Scenes/multiPlayer.tscn b/Scenes/multiPlayer.tscn index ae2826a..b589400 100644 --- a/Scenes/multiPlayer.tscn +++ b/Scenes/multiPlayer.tscn @@ -1,15 +1,15 @@ [gd_scene format=3 uid="uid://c30i6h32w8p47"] [ext_resource type="Script" uid="uid://d1cefhe3yyyds" path="res://Net/multiplayer_world.gd" id="1_kdan8"] -[ext_resource type="PackedScene" uid="uid://j5s5wus7tuhb" path="res://prefabs/XROrigin.tscn" id="2_g30gi"] -[ext_resource type="Material" uid="uid://cmia50cfqxxo4" path="res://textures/dev_material_3d.tres" id="3_75ecy"] -[ext_resource type="Sky" uid="uid://c1abtpwhdm2d5" path="res://textures/sky/NightSkyHDRI009_16K.tres" id="5_c3xgf"] -[ext_resource type="Script" uid="uid://fyd2rjramhbb" path="res://prefabs/kitchen_instantiator.gd" id="6_pw2j5"] +[ext_resource type="PackedScene" uid="uid://j5s5wus7tuhb" path="res://Prefabs/XROrigin.tscn" id="2_g30gi"] +[ext_resource type="Material" uid="uid://cmia50cfqxxo4" path="res://Textures/dev_material_3d.tres" id="3_75ecy"] +[ext_resource type="Sky" uid="uid://c1abtpwhdm2d5" path="res://Textures/sky/NightSkyHDRI009_16K.tres" id="5_c3xgf"] +[ext_resource type="Script" uid="uid://fyd2rjramhbb" path="res://Prefabs/kitchen_instantiator.gd" id="6_pw2j5"] [ext_resource type="PackedScene" uid="uid://damrxtlt7uswf" path="res://content/station_layouts/small_line.tscn" id="7_0sjqq"] -[ext_resource type="PackedScene" uid="uid://j7caslh27nor" path="res://stations/Hob.tscn" id="8_0sjqq"] -[ext_resource type="PackedScene" uid="uid://dm70ynyuw1a5u" path="res://prefabs/day_controller.tscn" id="9_5wx0o"] -[ext_resource type="PackedScene" uid="uid://bnwb7imcotkod" path="res://prefabs/build_mode_controller.tscn" id="10_464r1"] -[ext_resource type="PackedScene" uid="uid://dxe05wp60jg3l" path="res://scenes/queue_controller.tscn" id="11_de1dy"] +[ext_resource type="PackedScene" uid="uid://j7caslh27nor" path="res://Stations/Hob.tscn" id="8_0sjqq"] +[ext_resource type="PackedScene" uid="uid://dm70ynyuw1a5u" path="res://Prefabs/day_controller.tscn" id="9_5wx0o"] +[ext_resource type="PackedScene" uid="uid://bnwb7imcotkod" path="res://Prefabs/build_mode_controller.tscn" id="10_464r1"] +[ext_resource type="PackedScene" uid="uid://dxe05wp60jg3l" path="res://Scenes/queue_controller.tscn" id="11_de1dy"] [ext_resource type="Script" uid="uid://biu4qr3nr1eny" path="res://test/mp_test_driver.gd" id="99_mptst"] [sub_resource type="BoxShape3D" id="BoxShape3D_vlqg6"] @@ -31,8 +31,10 @@ sdfgi_enabled = true [sub_resource type="BoxShape3D" id="BoxShape3D_arao0"] size = Vector3(15, 20, 0.1) -[node name="Main" type="Node3D" unique_id=1312265607] +[node name="Main" type="Node3D" unique_id=1312265607 node_paths=PackedStringArray("items_spawner", "players_spawner")] script = ExtResource("1_kdan8") +items_spawner = NodePath("ItemsSpawner") +players_spawner = NodePath("PlayersSpawner") [node name="XROrigin3D" parent="." unique_id=2055526621 groups=["local_xr_origin"] instance=ExtResource("2_g30gi")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.36171648, 0, 0.81835127) diff --git a/Sounds/220175__gameaudio__pop-click.wav.import b/Sounds/220175__gameaudio__pop-click.wav.import index 4d6c554..a9417c0 100644 --- a/Sounds/220175__gameaudio__pop-click.wav.import +++ b/Sounds/220175__gameaudio__pop-click.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://mmasxwqyqmib" -path="res://.godot/imported/220175__gameaudio__pop-click.wav-6ef2d3317a82c347b715936ede79653a.sample" +path="res://.godot/imported/220175__gameaudio__pop-click.wav-1330523e09eacb15d341a14b80e4481e.sample" [deps] -source_file="res://sounds/220175__gameaudio__pop-click.wav" -dest_files=["res://.godot/imported/220175__gameaudio__pop-click.wav-6ef2d3317a82c347b715936ede79653a.sample"] +source_file="res://Sounds/220175__gameaudio__pop-click.wav" +dest_files=["res://.godot/imported/220175__gameaudio__pop-click.wav-1330523e09eacb15d341a14b80e4481e.sample"] [params] diff --git a/Sounds/220178__gameaudio__click.wav.import b/Sounds/220178__gameaudio__click.wav.import index f38e5e9..3a17a60 100644 --- a/Sounds/220178__gameaudio__click.wav.import +++ b/Sounds/220178__gameaudio__click.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://ecva70pect61" -path="res://.godot/imported/220178__gameaudio__click.wav-566ebf31c82573e187ff8a1db97a7861.sample" +path="res://.godot/imported/220178__gameaudio__click.wav-ca46bf33c1c48e1e526f04c43ca7d450.sample" [deps] -source_file="res://sounds/220178__gameaudio__click.wav" -dest_files=["res://.godot/imported/220178__gameaudio__click.wav-566ebf31c82573e187ff8a1db97a7861.sample"] +source_file="res://Sounds/220178__gameaudio__click.wav" +dest_files=["res://.godot/imported/220178__gameaudio__click.wav-ca46bf33c1c48e1e526f04c43ca7d450.sample"] [params] diff --git a/Sounds/220179__gameaudio__click-metal-ting.wav.import b/Sounds/220179__gameaudio__click-metal-ting.wav.import index f6d87f5..a53e857 100644 --- a/Sounds/220179__gameaudio__click-metal-ting.wav.import +++ b/Sounds/220179__gameaudio__click-metal-ting.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://b3wxawyrvuc6s" -path="res://.godot/imported/220179__gameaudio__click-metal-ting.wav-82be282871110eef8fea8249619832d7.sample" +path="res://.godot/imported/220179__gameaudio__click-metal-ting.wav-b01c457287fe42298a36c3de7c536c68.sample" [deps] -source_file="res://sounds/220179__gameaudio__click-metal-ting.wav" -dest_files=["res://.godot/imported/220179__gameaudio__click-metal-ting.wav-82be282871110eef8fea8249619832d7.sample"] +source_file="res://Sounds/220179__gameaudio__click-metal-ting.wav" +dest_files=["res://.godot/imported/220179__gameaudio__click-metal-ting.wav-b01c457287fe42298a36c3de7c536c68.sample"] [params] diff --git a/Sounds/220180__gameaudio__click-pop.wav.import b/Sounds/220180__gameaudio__click-pop.wav.import index 38974c6..ae51e42 100644 --- a/Sounds/220180__gameaudio__click-pop.wav.import +++ b/Sounds/220180__gameaudio__click-pop.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://b7sr2sb1ks5en" -path="res://.godot/imported/220180__gameaudio__click-pop.wav-32216325683d314fa3adc66d13e633f4.sample" +path="res://.godot/imported/220180__gameaudio__click-pop.wav-9e467150046193d705dd830885c89cd1.sample" [deps] -source_file="res://sounds/220180__gameaudio__click-pop.wav" -dest_files=["res://.godot/imported/220180__gameaudio__click-pop.wav-32216325683d314fa3adc66d13e633f4.sample"] +source_file="res://Sounds/220180__gameaudio__click-pop.wav" +dest_files=["res://.godot/imported/220180__gameaudio__click-pop.wav-9e467150046193d705dd830885c89cd1.sample"] [params] diff --git a/Sounds/220187__gameaudio__loosedeny-casual-1.wav.import b/Sounds/220187__gameaudio__loosedeny-casual-1.wav.import index 10e846f..a847b10 100644 --- a/Sounds/220187__gameaudio__loosedeny-casual-1.wav.import +++ b/Sounds/220187__gameaudio__loosedeny-casual-1.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://1ccsqbju32ey" -path="res://.godot/imported/220187__gameaudio__loosedeny-casual-1.wav-2e7c1356ffec0a1e5b732b21f42e21a0.sample" +path="res://.godot/imported/220187__gameaudio__loosedeny-casual-1.wav-cb0e560d42c6026ded2d2e240e614433.sample" [deps] -source_file="res://sounds/220187__gameaudio__loosedeny-casual-1.wav" -dest_files=["res://.godot/imported/220187__gameaudio__loosedeny-casual-1.wav-2e7c1356ffec0a1e5b732b21f42e21a0.sample"] +source_file="res://Sounds/220187__gameaudio__loosedeny-casual-1.wav" +dest_files=["res://.godot/imported/220187__gameaudio__loosedeny-casual-1.wav-cb0e560d42c6026ded2d2e240e614433.sample"] [params] diff --git a/Sounds/220194__gameaudio__click-heavy.wav.import b/Sounds/220194__gameaudio__click-heavy.wav.import index f0a2904..a99b102 100644 --- a/Sounds/220194__gameaudio__click-heavy.wav.import +++ b/Sounds/220194__gameaudio__click-heavy.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://bdnsgt7xt3261" -path="res://.godot/imported/220194__gameaudio__click-heavy.wav-43269bff3c60e2451b470f929c6b6bb8.sample" +path="res://.godot/imported/220194__gameaudio__click-heavy.wav-aca40ed286d93eb365d527a162fd3129.sample" [deps] -source_file="res://sounds/220194__gameaudio__click-heavy.wav" -dest_files=["res://.godot/imported/220194__gameaudio__click-heavy.wav-43269bff3c60e2451b470f929c6b6bb8.sample"] +source_file="res://Sounds/220194__gameaudio__click-heavy.wav" +dest_files=["res://.godot/imported/220194__gameaudio__click-heavy.wav-aca40ed286d93eb365d527a162fd3129.sample"] [params] diff --git a/Sounds/220195__gameaudio__click-wooden-1.wav.import b/Sounds/220195__gameaudio__click-wooden-1.wav.import index f7f67c2..57569f4 100644 --- a/Sounds/220195__gameaudio__click-wooden-1.wav.import +++ b/Sounds/220195__gameaudio__click-wooden-1.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://daiv8ubwdbidf" -path="res://.godot/imported/220195__gameaudio__click-wooden-1.wav-f161e2c5a53d686c65d143b45f33acb1.sample" +path="res://.godot/imported/220195__gameaudio__click-wooden-1.wav-9368ef861eabf2cf1d5bd0db33c616c8.sample" [deps] -source_file="res://sounds/220195__gameaudio__click-wooden-1.wav" -dest_files=["res://.godot/imported/220195__gameaudio__click-wooden-1.wav-f161e2c5a53d686c65d143b45f33acb1.sample"] +source_file="res://Sounds/220195__gameaudio__click-wooden-1.wav" +dest_files=["res://.godot/imported/220195__gameaudio__click-wooden-1.wav-9368ef861eabf2cf1d5bd0db33c616c8.sample"] [params] diff --git a/Sounds/220196__gameaudio__click-wooden-2.wav.import b/Sounds/220196__gameaudio__click-wooden-2.wav.import index 544f5b2..5207b69 100644 --- a/Sounds/220196__gameaudio__click-wooden-2.wav.import +++ b/Sounds/220196__gameaudio__click-wooden-2.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://qed775b4j1gg" -path="res://.godot/imported/220196__gameaudio__click-wooden-2.wav-372f3d1af9c561baf2360e14b5b7050b.sample" +path="res://.godot/imported/220196__gameaudio__click-wooden-2.wav-45bb63efefaf817b60155beec9343d74.sample" [deps] -source_file="res://sounds/220196__gameaudio__click-wooden-2.wav" -dest_files=["res://.godot/imported/220196__gameaudio__click-wooden-2.wav-372f3d1af9c561baf2360e14b5b7050b.sample"] +source_file="res://Sounds/220196__gameaudio__click-wooden-2.wav" +dest_files=["res://.godot/imported/220196__gameaudio__click-wooden-2.wav-45bb63efefaf817b60155beec9343d74.sample"] [params] diff --git a/Sounds/220197__gameaudio__click-basic.wav.import b/Sounds/220197__gameaudio__click-basic.wav.import index ec90517..4136eac 100644 --- a/Sounds/220197__gameaudio__click-basic.wav.import +++ b/Sounds/220197__gameaudio__click-basic.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://bqtk1adk8umbx" -path="res://.godot/imported/220197__gameaudio__click-basic.wav-61aa24994882b9ab5848ecead3d7aba9.sample" +path="res://.godot/imported/220197__gameaudio__click-basic.wav-9f173e2b7206278e95710ab077d62c32.sample" [deps] -source_file="res://sounds/220197__gameaudio__click-basic.wav" -dest_files=["res://.godot/imported/220197__gameaudio__click-basic.wav-61aa24994882b9ab5848ecead3d7aba9.sample"] +source_file="res://Sounds/220197__gameaudio__click-basic.wav" +dest_files=["res://.godot/imported/220197__gameaudio__click-basic.wav-9f173e2b7206278e95710ab077d62c32.sample"] [params] diff --git a/Sounds/220198__gameaudio__click-with-two-parts.wav.import b/Sounds/220198__gameaudio__click-with-two-parts.wav.import index 807e364..8a4c740 100644 --- a/Sounds/220198__gameaudio__click-with-two-parts.wav.import +++ b/Sounds/220198__gameaudio__click-with-two-parts.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://ysgfx76jkx2q" -path="res://.godot/imported/220198__gameaudio__click-with-two-parts.wav-23adbbdcc4d995994bf9700f6b6e244d.sample" +path="res://.godot/imported/220198__gameaudio__click-with-two-parts.wav-089977567529b37b0fd9cd019eb7b3c2.sample" [deps] -source_file="res://sounds/220198__gameaudio__click-with-two-parts.wav" -dest_files=["res://.godot/imported/220198__gameaudio__click-with-two-parts.wav-23adbbdcc4d995994bf9700f6b6e244d.sample"] +source_file="res://Sounds/220198__gameaudio__click-with-two-parts.wav" +dest_files=["res://.godot/imported/220198__gameaudio__click-with-two-parts.wav-089977567529b37b0fd9cd019eb7b3c2.sample"] [params] diff --git a/Sounds/220199__gameaudio__click-higher.wav.import b/Sounds/220199__gameaudio__click-higher.wav.import index c47ebe1..a031b89 100644 --- a/Sounds/220199__gameaudio__click-higher.wav.import +++ b/Sounds/220199__gameaudio__click-higher.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://dtyh22ccebiv5" -path="res://.godot/imported/220199__gameaudio__click-higher.wav-0ea6f7a1d32e528aace111f0ce8b9631.sample" +path="res://.godot/imported/220199__gameaudio__click-higher.wav-d1c1550d99a0cc873012c4010877005b.sample" [deps] -source_file="res://sounds/220199__gameaudio__click-higher.wav" -dest_files=["res://.godot/imported/220199__gameaudio__click-higher.wav-0ea6f7a1d32e528aace111f0ce8b9631.sample"] +source_file="res://Sounds/220199__gameaudio__click-higher.wav" +dest_files=["res://.godot/imported/220199__gameaudio__click-higher.wav-d1c1550d99a0cc873012c4010877005b.sample"] [params] diff --git a/Sounds/220208__gameaudio__click-pop-two-part.wav.import b/Sounds/220208__gameaudio__click-pop-two-part.wav.import index a6f2205..46dfa62 100644 --- a/Sounds/220208__gameaudio__click-pop-two-part.wav.import +++ b/Sounds/220208__gameaudio__click-pop-two-part.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://cywjbbeintjew" -path="res://.godot/imported/220208__gameaudio__click-pop-two-part.wav-9e40de3d9bebd124d0fe54a4f4cc4db9.sample" +path="res://.godot/imported/220208__gameaudio__click-pop-two-part.wav-04cb5eb3e0b3459771dbab42bbd24be9.sample" [deps] -source_file="res://sounds/220208__gameaudio__click-pop-two-part.wav" -dest_files=["res://.godot/imported/220208__gameaudio__click-pop-two-part.wav-9e40de3d9bebd124d0fe54a4f4cc4db9.sample"] +source_file="res://Sounds/220208__gameaudio__click-pop-two-part.wav" +dest_files=["res://.godot/imported/220208__gameaudio__click-pop-two-part.wav-04cb5eb3e0b3459771dbab42bbd24be9.sample"] [params] diff --git a/Sounds/220212__gameaudio__ping-bing.wav.import b/Sounds/220212__gameaudio__ping-bing.wav.import index 519a7b2..8ac3beb 100644 --- a/Sounds/220212__gameaudio__ping-bing.wav.import +++ b/Sounds/220212__gameaudio__ping-bing.wav.import @@ -3,12 +3,12 @@ importer="wav" type="AudioStreamWAV" uid="uid://claw3d2wnyr6a" -path="res://.godot/imported/220212__gameaudio__ping-bing.wav-04a5460471fa8fe82fe5d9bc5d946bb0.sample" +path="res://.godot/imported/220212__gameaudio__ping-bing.wav-2a1049829e71a0034c7e8d18745663f1.sample" [deps] -source_file="res://sounds/220212__gameaudio__ping-bing.wav" -dest_files=["res://.godot/imported/220212__gameaudio__ping-bing.wav-04a5460471fa8fe82fe5d9bc5d946bb0.sample"] +source_file="res://Sounds/220212__gameaudio__ping-bing.wav" +dest_files=["res://.godot/imported/220212__gameaudio__ping-bing.wav-2a1049829e71a0034c7e8d18745663f1.sample"] [params] diff --git a/Sounds/money.mp3.import b/Sounds/money.mp3.import index af074b0..8ef2e95 100644 --- a/Sounds/money.mp3.import +++ b/Sounds/money.mp3.import @@ -3,12 +3,12 @@ importer="mp3" type="AudioStreamMP3" uid="uid://clkjwcawdqvta" -path="res://.godot/imported/money.mp3-e3eae11b0c1923c268268b900bde9157.mp3str" +path="res://.godot/imported/money.mp3-95c717b8402507d80974f4f4287b0b63.mp3str" [deps] -source_file="res://sounds/money.mp3" -dest_files=["res://.godot/imported/money.mp3-e3eae11b0c1923c268268b900bde9157.mp3str"] +source_file="res://Sounds/money.mp3" +dest_files=["res://.godot/imported/money.mp3-95c717b8402507d80974f4f4287b0b63.mp3str"] [params] diff --git a/Textures/1.png.import b/Textures/1.png.import index 14b7a2c..4c77b67 100644 --- a/Textures/1.png.import +++ b/Textures/1.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://cexxfyw03hr81" -path.s3tc="res://.godot/imported/1.png-28d6e3d31e46c95f0dea1abf906c0f74.s3tc.ctex" +path.s3tc="res://.godot/imported/1.png-1282cd758f0d245fa29065df8c6fe28d.s3tc.ctex" metadata={ "imported_formats": ["s3tc_bptc"], "vram_texture": true @@ -11,8 +11,8 @@ metadata={ [deps] -source_file="res://textures/1.png" -dest_files=["res://.godot/imported/1.png-28d6e3d31e46c95f0dea1abf906c0f74.s3tc.ctex"] +source_file="res://Textures/1.png" +dest_files=["res://.godot/imported/1.png-1282cd758f0d245fa29065df8c6fe28d.s3tc.ctex"] [params] diff --git a/Textures/2.png.import b/Textures/2.png.import index ec614db..f327517 100644 --- a/Textures/2.png.import +++ b/Textures/2.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://cxsy4fi0iv1dx" -path.s3tc="res://.godot/imported/2.png-3b4d648e04c4a84e8b8f6c622069553c.s3tc.ctex" +path.s3tc="res://.godot/imported/2.png-58b544529b3c8efe890c8b21f147e810.s3tc.ctex" metadata={ "imported_formats": ["s3tc_bptc"], "vram_texture": true @@ -11,8 +11,8 @@ metadata={ [deps] -source_file="res://textures/2.png" -dest_files=["res://.godot/imported/2.png-3b4d648e04c4a84e8b8f6c622069553c.s3tc.ctex"] +source_file="res://Textures/2.png" +dest_files=["res://.godot/imported/2.png-58b544529b3c8efe890c8b21f147e810.s3tc.ctex"] [params] diff --git a/Textures/3.png.import b/Textures/3.png.import index 3569fbb..5357744 100644 --- a/Textures/3.png.import +++ b/Textures/3.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://cxeeadx0c2ygg" -path.s3tc="res://.godot/imported/3.png-ff3babb0d8b4fdc49e4a4961a679d180.s3tc.ctex" +path.s3tc="res://.godot/imported/3.png-ea971c9bd22bfef88dcd66b7417b5707.s3tc.ctex" metadata={ "imported_formats": ["s3tc_bptc"], "vram_texture": true @@ -11,8 +11,8 @@ metadata={ [deps] -source_file="res://textures/3.png" -dest_files=["res://.godot/imported/3.png-ff3babb0d8b4fdc49e4a4961a679d180.s3tc.ctex"] +source_file="res://Textures/3.png" +dest_files=["res://.godot/imported/3.png-ea971c9bd22bfef88dcd66b7417b5707.s3tc.ctex"] [params] diff --git a/Textures/34ada903e409f375853dd34c62f9ceb531c152c6.png.import b/Textures/34ada903e409f375853dd34c62f9ceb531c152c6.png.import index c1d7425..149fa43 100644 --- a/Textures/34ada903e409f375853dd34c62f9ceb531c152c6.png.import +++ b/Textures/34ada903e409f375853dd34c62f9ceb531c152c6.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dqan7pog3m3bb" -path="res://.godot/imported/34ada903e409f375853dd34c62f9ceb531c152c6.png-e62c69580b417e1b97d4e6e3907a53d8.ctex" +path="res://.godot/imported/34ada903e409f375853dd34c62f9ceb531c152c6.png-0e01048fdc7cbaaa23e270d40208f9b2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/34ada903e409f375853dd34c62f9ceb531c152c6.png" -dest_files=["res://.godot/imported/34ada903e409f375853dd34c62f9ceb531c152c6.png-e62c69580b417e1b97d4e6e3907a53d8.ctex"] +source_file="res://Textures/34ada903e409f375853dd34c62f9ceb531c152c6.png" +dest_files=["res://.godot/imported/34ada903e409f375853dd34c62f9ceb531c152c6.png-0e01048fdc7cbaaa23e270d40208f9b2.ctex"] [params] diff --git a/Textures/4.png.import b/Textures/4.png.import index 6f6dc9c..f885416 100644 --- a/Textures/4.png.import +++ b/Textures/4.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://xpf60mxi3cf" -path.s3tc="res://.godot/imported/4.png-7c86e7f37dd6d943dc49fdd7899e8cb6.s3tc.ctex" +path.s3tc="res://.godot/imported/4.png-352134ccf44954619410b58ec193bd16.s3tc.ctex" metadata={ "imported_formats": ["s3tc_bptc"], "vram_texture": true @@ -11,8 +11,8 @@ metadata={ [deps] -source_file="res://textures/4.png" -dest_files=["res://.godot/imported/4.png-7c86e7f37dd6d943dc49fdd7899e8cb6.s3tc.ctex"] +source_file="res://Textures/4.png" +dest_files=["res://.godot/imported/4.png-352134ccf44954619410b58ec193bd16.s3tc.ctex"] [params] diff --git a/Textures/5.png.import b/Textures/5.png.import index a3cc8e2..0efc1ce 100644 --- a/Textures/5.png.import +++ b/Textures/5.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://b7n8d4krwbcvl" -path.s3tc="res://.godot/imported/5.png-b386ff019a5e522d985ab44e8f6c88d9.s3tc.ctex" +path.s3tc="res://.godot/imported/5.png-be0d39347a68c1d063c92edeb31b0a20.s3tc.ctex" metadata={ "imported_formats": ["s3tc_bptc"], "vram_texture": true @@ -11,8 +11,8 @@ metadata={ [deps] -source_file="res://textures/5.png" -dest_files=["res://.godot/imported/5.png-b386ff019a5e522d985ab44e8f6c88d9.s3tc.ctex"] +source_file="res://Textures/5.png" +dest_files=["res://.godot/imported/5.png-be0d39347a68c1d063c92edeb31b0a20.s3tc.ctex"] [params] diff --git a/Textures/devTex.svg.import b/Textures/devTex.svg.import index 51ac4ab..13740a3 100644 --- a/Textures/devTex.svg.import +++ b/Textures/devTex.svg.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://eqp04wybmg" -path="res://.godot/imported/devTex.svg-246e77b8f216572aac74f8f3d27707b4.ctex" +path="res://.godot/imported/devTex.svg-7096dfe1fce7d6bfeb43d4ba1bd108ed.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/devTex.svg" -dest_files=["res://.godot/imported/devTex.svg-246e77b8f216572aac74f8f3d27707b4.ctex"] +source_file="res://Textures/devTex.svg" +dest_files=["res://.godot/imported/devTex.svg-7096dfe1fce7d6bfeb43d4ba1bd108ed.ctex"] [params] diff --git a/Textures/dev_material_3d.tres b/Textures/dev_material_3d.tres index 5d6b83b..85f8d56 100644 --- a/Textures/dev_material_3d.tres +++ b/Textures/dev_material_3d.tres @@ -1,6 +1,6 @@ [gd_resource type="StandardMaterial3D" format=3 uid="uid://cmia50cfqxxo4"] -[ext_resource type="Texture2D" uid="uid://eqp04wybmg" path="res://textures/devTex.svg" id="1_3jxsn"] +[ext_resource type="Texture2D" uid="uid://eqp04wybmg" path="res://Textures/devTex.svg" id="1_3jxsn"] [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0gbf8"] transparency = 1 diff --git a/Textures/shop/burger_buns.png.import b/Textures/shop/burger_buns.png.import index 87ab96e..808ee54 100644 --- a/Textures/shop/burger_buns.png.import +++ b/Textures/shop/burger_buns.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bmomecu0058xg" -path="res://.godot/imported/burger_buns.png-1d188acf1114db952605e27ec3a22b7d.ctex" +path="res://.godot/imported/burger_buns.png-eb99084f29b786b6fd1dc4a9421e18f4.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/shop/burger_buns.png" -dest_files=["res://.godot/imported/burger_buns.png-1d188acf1114db952605e27ec3a22b7d.ctex"] +source_file="res://Textures/shop/burger_buns.png" +dest_files=["res://.godot/imported/burger_buns.png-eb99084f29b786b6fd1dc4a9421e18f4.ctex"] [params] diff --git a/Textures/shop/counter.png.import b/Textures/shop/counter.png.import index bddbdde..1f302cb 100644 --- a/Textures/shop/counter.png.import +++ b/Textures/shop/counter.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c0nd4nh4vja73" -path="res://.godot/imported/counter.png-34b9e7d123a9cc4ef081254e27f4cf64.ctex" +path="res://.godot/imported/counter.png-518cbb629fdf0be6542a516cbab3572a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/shop/counter.png" -dest_files=["res://.godot/imported/counter.png-34b9e7d123a9cc4ef081254e27f4cf64.ctex"] +source_file="res://Textures/shop/counter.png" +dest_files=["res://.godot/imported/counter.png-518cbb629fdf0be6542a516cbab3572a.ctex"] [params] diff --git a/Textures/shop/hob.png.import b/Textures/shop/hob.png.import index 928a10b..d325558 100644 --- a/Textures/shop/hob.png.import +++ b/Textures/shop/hob.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ejby14dl1svr" -path="res://.godot/imported/hob.png-d5f291318e31b8c1fd380973ba2b3e5f.ctex" +path="res://.godot/imported/hob.png-8a3c2590ce6bc6152cc40354a5804ed3.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/shop/hob.png" -dest_files=["res://.godot/imported/hob.png-d5f291318e31b8c1fd380973ba2b3e5f.ctex"] +source_file="res://Textures/shop/hob.png" +dest_files=["res://.godot/imported/hob.png-8a3c2590ce6bc6152cc40354a5804ed3.ctex"] [params] diff --git a/Textures/shop/plates.png.import b/Textures/shop/plates.png.import index 70ba7e5..df0eb03 100644 --- a/Textures/shop/plates.png.import +++ b/Textures/shop/plates.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cjrwhtsjjhtu7" -path="res://.godot/imported/plates.png-604fb64dc490ce3d61a68949e43933ce.ctex" +path="res://.godot/imported/plates.png-2d130be16573bc7773059442b60049f2.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/shop/plates.png" -dest_files=["res://.godot/imported/plates.png-604fb64dc490ce3d61a68949e43933ce.ctex"] +source_file="res://Textures/shop/plates.png" +dest_files=["res://.godot/imported/plates.png-2d130be16573bc7773059442b60049f2.ctex"] [params] diff --git a/Textures/shop/potatoes.png.import b/Textures/shop/potatoes.png.import index 5ffb085..dcfbea1 100644 --- a/Textures/shop/potatoes.png.import +++ b/Textures/shop/potatoes.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://blekcmdjkxs0q" -path="res://.godot/imported/potatoes.png-348ae4010ffc422d20b1b18ef1c047b7.ctex" +path="res://.godot/imported/potatoes.png-ffbc13d9bfd95e02bc08cf9c4345780c.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/shop/potatoes.png" -dest_files=["res://.godot/imported/potatoes.png-348ae4010ffc422d20b1b18ef1c047b7.ctex"] +source_file="res://Textures/shop/potatoes.png" +dest_files=["res://.godot/imported/potatoes.png-ffbc13d9bfd95e02bc08cf9c4345780c.ctex"] [params] diff --git a/Textures/shop/raw_burger.png.import b/Textures/shop/raw_burger.png.import index a9b7655..f942b26 100644 --- a/Textures/shop/raw_burger.png.import +++ b/Textures/shop/raw_burger.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dpaqhbpmk7exf" -path="res://.godot/imported/raw_burger.png-281cd44e6d7ec4dca89ef14be14b45df.ctex" +path="res://.godot/imported/raw_burger.png-245bf9ca2b3f6674c8ee11bd6a47bbb4.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/shop/raw_burger.png" -dest_files=["res://.godot/imported/raw_burger.png-281cd44e6d7ec4dca89ef14be14b45df.ctex"] +source_file="res://Textures/shop/raw_burger.png" +dest_files=["res://.godot/imported/raw_burger.png-245bf9ca2b3f6674c8ee11bd6a47bbb4.ctex"] [params] diff --git a/Textures/shop/sink.png.import b/Textures/shop/sink.png.import index d16cd97..c2daac5 100644 --- a/Textures/shop/sink.png.import +++ b/Textures/shop/sink.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://ecdu0qqhib4" -path="res://.godot/imported/sink.png-b4ba3b467f19b9cacd807739403f133b.ctex" +path="res://.godot/imported/sink.png-4a3efd6bdea4a31b0221ffe031074493.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/shop/sink.png" -dest_files=["res://.godot/imported/sink.png-b4ba3b467f19b9cacd807739403f133b.ctex"] +source_file="res://Textures/shop/sink.png" +dest_files=["res://.godot/imported/sink.png-4a3efd6bdea4a31b0221ffe031074493.ctex"] [params] diff --git a/Textures/shop/table.png.import b/Textures/shop/table.png.import index 6c5fd22..ffaba1f 100644 --- a/Textures/shop/table.png.import +++ b/Textures/shop/table.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://cv3grgonwlakt" -path="res://.godot/imported/table.png-329a7e7d913d8d0d73e07611b7f10c21.ctex" +path="res://.godot/imported/table.png-2b5f18b015a2afc41ee9ba67103b6ede.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/shop/table.png" -dest_files=["res://.godot/imported/table.png-329a7e7d913d8d0d73e07611b7f10c21.ctex"] +source_file="res://Textures/shop/table.png" +dest_files=["res://.godot/imported/table.png-2b5f18b015a2afc41ee9ba67103b6ede.ctex"] [params] diff --git a/Textures/sky/NightSkyHDRI009.png.import b/Textures/sky/NightSkyHDRI009.png.import index 56f8104..71240bd 100644 --- a/Textures/sky/NightSkyHDRI009.png.import +++ b/Textures/sky/NightSkyHDRI009.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://hfkxs3ncjc4m" -path="res://.godot/imported/NightSkyHDRI009.png-30c624de99c676c23642a0e7a463453d.ctex" +path="res://.godot/imported/NightSkyHDRI009.png-5fecb5274d03e5767c649d4bae381a39.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/sky/NightSkyHDRI009.png" -dest_files=["res://.godot/imported/NightSkyHDRI009.png-30c624de99c676c23642a0e7a463453d.ctex"] +source_file="res://Textures/sky/NightSkyHDRI009.png" +dest_files=["res://.godot/imported/NightSkyHDRI009.png-5fecb5274d03e5767c649d4bae381a39.ctex"] [params] diff --git a/Textures/sky/NightSkyHDRI009_16K.tres b/Textures/sky/NightSkyHDRI009_16K.tres index 25ff43b..eaa2922 100644 --- a/Textures/sky/NightSkyHDRI009_16K.tres +++ b/Textures/sky/NightSkyHDRI009_16K.tres @@ -1,6 +1,6 @@ [gd_resource type="Sky" format=3 uid="uid://c1abtpwhdm2d5"] -[ext_resource type="Texture2D" uid="uid://ci0hjoabnf8nu" path="res://textures/sky/NightSkyHDRI009_16K_HDR.exr" id="acg_mft3ic9d"] +[ext_resource type="Texture2D" uid="uid://ci0hjoabnf8nu" path="res://Textures/sky/NightSkyHDRI009_16K_HDR.exr" id="acg_mft3ic9d"] [sub_resource type="PanoramaSkyMaterial" id="acg_025sfqr4"] panorama = ExtResource("acg_mft3ic9d") diff --git a/Textures/sky/NightSkyHDRI009_16K_HDR.exr.import b/Textures/sky/NightSkyHDRI009_16K_HDR.exr.import index f8a6492..2764277 100644 --- a/Textures/sky/NightSkyHDRI009_16K_HDR.exr.import +++ b/Textures/sky/NightSkyHDRI009_16K_HDR.exr.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://ci0hjoabnf8nu" -path.bptc="res://.godot/imported/NightSkyHDRI009_16K_HDR.exr-43fd92962b13d105254e11ecfdaf0858.bptc.ctex" +path.bptc="res://.godot/imported/NightSkyHDRI009_16K_HDR.exr-9a5d77664863ac9d0a6a2889b31099ca.bptc.ctex" metadata={ "imported_formats": ["s3tc_bptc"], "vram_texture": true @@ -11,8 +11,8 @@ metadata={ [deps] -source_file="res://textures/sky/NightSkyHDRI009_16K_HDR.exr" -dest_files=["res://.godot/imported/NightSkyHDRI009_16K_HDR.exr-43fd92962b13d105254e11ecfdaf0858.bptc.ctex"] +source_file="res://Textures/sky/NightSkyHDRI009_16K_HDR.exr" +dest_files=["res://.godot/imported/NightSkyHDRI009_16K_HDR.exr-9a5d77664863ac9d0a6a2889b31099ca.bptc.ctex"] [params] diff --git a/Textures/sky/NightSkyHDRI009_16K_TONEMAPPED.jpg.import b/Textures/sky/NightSkyHDRI009_16K_TONEMAPPED.jpg.import index e3036f6..88ea7c4 100644 --- a/Textures/sky/NightSkyHDRI009_16K_TONEMAPPED.jpg.import +++ b/Textures/sky/NightSkyHDRI009_16K_TONEMAPPED.jpg.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c64om8q11trnm" -path="res://.godot/imported/NightSkyHDRI009_16K_TONEMAPPED.jpg-772032c9d36bbd100929d978b6fbe78b.ctex" +path="res://.godot/imported/NightSkyHDRI009_16K_TONEMAPPED.jpg-8d036fe183f31a1e4946600f7e0a089a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://textures/sky/NightSkyHDRI009_16K_TONEMAPPED.jpg" -dest_files=["res://.godot/imported/NightSkyHDRI009_16K_TONEMAPPED.jpg-772032c9d36bbd100929d978b6fbe78b.ctex"] +source_file="res://Textures/sky/NightSkyHDRI009_16K_TONEMAPPED.jpg" +dest_files=["res://.godot/imported/NightSkyHDRI009_16K_TONEMAPPED.jpg-8d036fe183f31a1e4946600f7e0a089a.ctex"] [params] diff --git a/recipes.yaml.uid b/recipes.yaml.uid new file mode 100644 index 0000000..26c7014 --- /dev/null +++ b/recipes.yaml.uid @@ -0,0 +1 @@ +uid://be8o8m6xpp3kc