Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / room / Dungeon.cs
@小李xl 小李xl on 21 Feb 2024 248 bytes 小修改

/// <summary>
/// 地牢类
/// </summary>
public partial class Dungeon : World
{
    /// <summary>
    /// 初始化 TileMap 中的层级
    /// </summary>
    public void InitLayer()
    {
        MapLayerManager.InitMapLayer(TileRoot);
    }
}