Allow for negative values in Rectangle
This commit is contained in:
parent
de84adb477
commit
daa6ad3b95
|
@ -37,7 +37,7 @@ namespace StardewModdingAPI.Framework.Serialization
|
||||||
if (string.IsNullOrWhiteSpace(str))
|
if (string.IsNullOrWhiteSpace(str))
|
||||||
return Rectangle.Empty;
|
return Rectangle.Empty;
|
||||||
|
|
||||||
var match = Regex.Match(str, @"^\{X:(?<x>\d+) Y:(?<y>\d+) Width:(?<width>\d+) Height:(?<height>\d+)\}$", RegexOptions.IgnoreCase);
|
var match = Regex.Match(str, @"^\{X:(?<x>-?\d+) Y:(?<y>-?\d+) Width:(?<width>-?\d+) Height:(?<height>-?\d+)\}$", RegexOptions.IgnoreCase);
|
||||||
if (!match.Success)
|
if (!match.Success)
|
||||||
throw new SParseException($"Can't parse {nameof(Rectangle)} from invalid value '{str}' (path: {path}).");
|
throw new SParseException($"Can't parse {nameof(Rectangle)} from invalid value '{str}' (path: {path}).");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue