From dc8b2499992f3afb8633be5bb98c71fc90ee2c0b Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Thu, 26 Nov 2020 15:36:30 +0100 Subject: [PATCH] [csharp] Added getter accessors for Atlas.Pages and Atlas.Regions as they were missing (only enumeration of regions or access by name was possible). --- spine-csharp/src/Atlas.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spine-csharp/src/Atlas.cs b/spine-csharp/src/Atlas.cs index 3ef27c5d1..aeaf1050a 100644 --- a/spine-csharp/src/Atlas.cs +++ b/spine-csharp/src/Atlas.cs @@ -58,6 +58,9 @@ namespace Spine { } #endregion + public List Regions { get { return regions; } } + public List Pages { get { return pages; } } + #if !(IS_UNITY) #if WINDOWS_STOREAPP private async Task ReadFile(string path, TextureLoader textureLoader) {