Round system

This commit is contained in:
Rendo 2025-11-29 23:46:16 +05:00
commit 3df8247a84
32 changed files with 573 additions and 123 deletions

View file

@ -0,0 +1,16 @@
extends Node
class_name ObjectContainer
@export var exlusion_list: Array[Node]
func _ready() -> void:
if not multiplayer.is_server(): return
Session.object_containers.append(self)
func despawn():
if not multiplayer.is_server(): return
for child in get_children():
if exlusion_list.has(child):
continue
child.queue_free()