From a90c96a0780d6c232ca6188bf867026f28b36c68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A4=D1=91=D0=B4=D0=BE=D1=80=20=D0=92=D0=B5=D1=81=D0=B5?= =?UTF-8?q?=D0=BB=D0=BE=D0=B2?= Date: Sun, 15 Sep 2024 20:42:11 +0500 Subject: [PATCH] Pool container canvas layers --- scripts/components/level/PoolContainer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/components/level/PoolContainer.cs b/scripts/components/level/PoolContainer.cs index 2479807..cae640a 100644 --- a/scripts/components/level/PoolContainer.cs +++ b/scripts/components/level/PoolContainer.cs @@ -9,13 +9,13 @@ using System.Collections.Generic; public partial class PoolContainer : Node { [Export] - public Node Zombies { get; private set; } + public CanvasLayer Zombies { get; private set; } [Export] - public Node Plants { get; private set; } + public CanvasLayer Plants { get; private set; } [Export] - public Node Projectiles { get; private set; } + public CanvasLayer Projectiles { get; private set; } [Export] - public Node Structures { get; private set; } + public CanvasLayer Structures { get; private set; } public Dictionary[] EntityField = { new Dictionary(), new Dictionary(), new Dictionary() }; public override void _Ready()