(clinet) feat:添加瓦片地图临时贴图

This commit is contained in:
m0_75251201
2025-07-12 00:24:28 +08:00
parent 7a50a73dcb
commit a29fc46cbb
29 changed files with 1077 additions and 0 deletions

View File

@ -0,0 +1,21 @@
using UnityEngine;
using UnityEngine.Tilemaps;
namespace Map
{
public class DoubleMap : MonoBehaviour
{
public Tilemap dataLevel;
public Tilemap textureLevel;
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
}