mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
cleaned up formatting
This commit is contained in:
parent
27fc5a74d9
commit
9a0b8ef846
1 changed files with 3 additions and 6 deletions
|
@ -71,12 +71,9 @@ namespace MLEM.Data {
|
|||
loc.Offset(off);
|
||||
|
||||
// pivot
|
||||
var piv = Vector2.Zero;
|
||||
if (match.Groups[6].Success) {
|
||||
piv = new Vector2(
|
||||
var piv = !match.Groups[6].Success ? Vector2.Zero : 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) {
|
||||
|
|
Loading…
Reference in a new issue