1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-22 04:49:10 +02:00

only offset DataTextureAtlas pivot if it is specified

This commit is contained in:
Ell 2021-07-31 04:04:04 +02:00
parent 516265bf5b
commit e11eb459b8

View file

@ -71,10 +71,9 @@ namespace MLEM.Data {
loc.Offset(off);
// pivot
var piv = !match.Groups[6].Success ? Vector2.Zero : new Vector2(
var piv = !match.Groups[6].Success ? Vector2.Zero : off + new Vector2(
float.Parse(match.Groups[6].Value, CultureInfo.InvariantCulture) - (pivotRelative ? 0 : loc.X),
float.Parse(match.Groups[7].Value, CultureInfo.InvariantCulture) - (pivotRelative ? 0 : loc.Y));
piv += off;
var region = new TextureRegion(texture, loc) {
PivotPixels = piv,