Isometric test

This commit is contained in:
Marco 2025-06-09 18:57:53 +02:00
commit 1434f7aa6d
806 changed files with 18966 additions and 15 deletions

16
IsoTest/IsoGrid.cs Normal file
View file

@ -0,0 +1,16 @@
using Godot;
using System;
public partial class IsoGrid : Node
{
[Export] public float TextureScale { get; private set; } = 3;
public Vector2 GameToEngine(int x, int y, int z)
{
var rtn = Vector2.Zero;
//rtn +=
return rtn;
}
}