mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 09:55:35 +00:00
16 lines
242 B
C#
16 lines
242 B
C#
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;
|
|
}
|
|
}
|