This commit is contained in:
CortexCore
2025-04-14 15:39:24 +08:00
parent 5fceb6f885
commit 3f9d9f19ce
50 changed files with 683 additions and 41 deletions

View File

@@ -2,6 +2,7 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Serialization;
namespace Project.B.Map
{
@@ -11,16 +12,18 @@ namespace Project.B.Map
[SerializeField] private string description;
[SerializeField] private string author;
[SerializeField] private string mapAddress;
[SerializeField] private Texture overview;
[FormerlySerializedAs("overview")] [SerializeField] private Texture loadingScreen;
[SerializeField] private Sprite mapOverview;
[SerializeField] private Vector2 offset;
[SerializeField] private int size;
public string MapName => mapName;
public string Author => author;
public string Description => description;
public object Overview => overview;
public object LoadingScreen => loadingScreen;
public string MapAddress => mapAddress;
public Vector2 Offset => offset;
public int Size => size;
public object MapOverview => mapOverview;
}
}
#endif