Sites
This commit is contained in:
parent
bd16f01192
commit
6422ffb13c
13 changed files with 142 additions and 5 deletions
9
scripts/multiplayer/plant_site/plant_deadzone.gd
Normal file
9
scripts/multiplayer/plant_site/plant_deadzone.gd
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
extends Area3D
|
||||
|
||||
@export var bound_plant: Area3D
|
||||
|
||||
func _ready() -> void:
|
||||
if multiplayer.is_server():
|
||||
Session.plant_deadzones[bound_plant.name] = self
|
||||
else:
|
||||
queue_free()
|
||||
1
scripts/multiplayer/plant_site/plant_deadzone.gd.uid
Normal file
1
scripts/multiplayer/plant_site/plant_deadzone.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://b4cpux52fmx5o
|
||||
23
scripts/multiplayer/plant_site/plant_site.gd
Normal file
23
scripts/multiplayer/plant_site/plant_site.gd
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
extends Area3D
|
||||
|
||||
class_name PlantSite
|
||||
|
||||
var players_on_site: Array[int]
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
body_entered.connect(on_body_entered)
|
||||
body_exited.connect(on_body_exited)
|
||||
|
||||
Session.plants.append(self)
|
||||
|
||||
func on_body_entered(body: Node3D):
|
||||
if body is Player:
|
||||
players_on_site.append(int(body.name))
|
||||
|
||||
func on_body_exited(body: Node3D):
|
||||
if body is Player:
|
||||
players_on_site.erase(int(body.name))
|
||||
|
||||
func is_player_on_site(id: int):
|
||||
return players_on_site.has(id)
|
||||
1
scripts/multiplayer/plant_site/plant_site.gd.uid
Normal file
1
scripts/multiplayer/plant_site/plant_site.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://dk1gjbuydemmb
|
||||
Loading…
Add table
Add a link
Reference in a new issue