diff --git a/MLEM/Textures/DataTextureAtlas.cs b/MLEM/Textures/DataTextureAtlas.cs index 1c746da..2317ed4 100644 --- a/MLEM/Textures/DataTextureAtlas.cs +++ b/MLEM/Textures/DataTextureAtlas.cs @@ -19,10 +19,15 @@ namespace MLEM.Textures { /// public readonly Texture2D Texture; /// - /// Returns the texture region with the given name. + /// Returns the texture region with the given name, or null if it does not exist. /// /// The region's name - public TextureRegion this[string name] => this.regions[name]; + public TextureRegion this[string name] { + get { + this.regions.TryGetValue(name, out var ret); + return ret; + } + } /// /// Returns an enumerable of all of the s in this atlas. ///