Add fish selling, buyer profiles, and player wallet
This commit is contained in:
parent
fb04615600
commit
d2fe367891
25 changed files with 738 additions and 5 deletions
|
|
@ -1,8 +1,10 @@
|
|||
[gd_scene load_steps=11 format=3]
|
||||
[gd_scene load_steps=13 format=3]
|
||||
|
||||
[ext_resource type="Script" path="res://player/player.gd" id="1_script"]
|
||||
[ext_resource type="Script" path="res://inventory/fish_inventory.gd" id="2_inventory"]
|
||||
[ext_resource type="Script" path="res://collection/collection_log.gd" id="3_collection"]
|
||||
[ext_resource type="Script" path="res://economy/player_wallet.gd" id="4_wallet"]
|
||||
[ext_resource type="Script" path="res://economy/fish_sale_service.gd" id="5_sale_service"]
|
||||
|
||||
[sub_resource type="CapsuleShape3D" id="PlayerShape"]
|
||||
radius = 0.45
|
||||
|
|
@ -78,6 +80,14 @@ script = ExtResource("2_inventory")
|
|||
unique_name_in_owner = true
|
||||
script = ExtResource("3_collection")
|
||||
|
||||
[node name="Wallet" type="Node" parent="."]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("4_wallet")
|
||||
|
||||
[node name="FishSaleService" type="Node" parent="."]
|
||||
unique_name_in_owner = true
|
||||
script = ExtResource("5_sale_service")
|
||||
|
||||
[node name="CatchDisplayAnchor" type="Marker3D" parent="Visuals"]
|
||||
unique_name_in_owner = true
|
||||
position = Vector3(0, 1.45, -1.15)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue