working on items and inventory
This commit is contained in:
@@ -15,17 +15,22 @@ extends PU_Item
|
||||
|
||||
func _input(event):
|
||||
if Input.is_action_pressed("interact") and is_reachable and current_player:
|
||||
print("ITEM TYPE: ", item_type)
|
||||
# if item_type == 0: # 0 is weapon
|
||||
# print("Weapon!")
|
||||
var result = current_player.add_inventory_item(item_info)
|
||||
if result:
|
||||
queue_free()
|
||||
current_player.add_inventory_item(item_info)
|
||||
print("Adding inventory item!")
|
||||
cleanup.rpc()
|
||||
|
||||
@rpc("call_local", "any_peer")
|
||||
func cleanup():
|
||||
queue_free()
|
||||
|
||||
func _on_bomb_pu_area_body_entered(body):
|
||||
if body.is_in_group("player"):
|
||||
current_player = body
|
||||
is_reachable = true
|
||||
current_player.set_context_label("Pickup " + item_info.item_name + "?")
|
||||
current_player.set_context_label.rpc_id(current_player.get_multiplayer_authority(), "Pickup " + item_info.item_name + "?")
|
||||
|
||||
|
||||
func _on_bomb_pu_area_body_exited(body):
|
||||
|
Reference in New Issue
Block a user