From 4206b63785de0a4c3df829d01057a44492ed977d Mon Sep 17 00:00:00 2001 From: vaporvee Date: Tue, 15 Nov 2022 20:30:21 +0100 Subject: [PATCH] changed a comment --- src/tilemap_foreground.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tilemap_foreground.cs b/src/tilemap_foreground.cs index 8396ae8..686faa7 100644 --- a/src/tilemap_foreground.cs +++ b/src/tilemap_foreground.cs @@ -20,7 +20,7 @@ public class tilemap_foreground : TileMap var instance = scene.Instance(); AddChild(instance); var node = GetNode(instance.GetPath()); - node.Position = allCells[i] * CellSize; //node has to be 2D and can't be centered + node.Position = allCells[i] * CellSize; //node has to be Node2D and can't be centered GD.Print(node); } }