temp #36

Merged
TheRedApricot merged 26 commits from zzdxxz/Gen_Hack-and-Slash-Roguelite-zzdxxz:temp into main 2025-07-15 15:26:59 +08:00
54 changed files with 2161 additions and 235 deletions
Showing only changes of commit 7dce32a71b - Show all commits

View File

@ -1,3 +1,4 @@
using System.Collections.Generic;
using UnityEngine; using UnityEngine;
using UnityEngine.Tilemaps; using UnityEngine.Tilemaps;
@ -7,9 +8,12 @@ namespace Map
{ {
public Tilemap dataLevel; public Tilemap dataLevel;
public Tilemap textureLevel; public Tilemap textureLevel;
public Dictionary<string, TileBase> tileDict = new();
void Start() void Start()
{ {
tileDict = Configs.ConfigProcessor.LoadResources<TileBase>("TileMap");
Debug.Log(tileDict.Count);
} }
// Update is called once per frame // Update is called once per frame