Fix Tiled Problems (#332)

* Add Tiled Content Pipeline library to NuGet

* Update Tiled NuGet package elements.

* Remove dependency on Graphics

* Update csproj for removal of Graphics dependency

* Fix build errors

* Fix problems
This commit is contained in:
Lucas Girouard-Stranks
2017-01-20 21:08:14 +10:00
committed by Dylan Wilson
parent be429b4a07
commit b22a062147
52 changed files with 218 additions and 352 deletions
@@ -16,8 +16,8 @@ namespace MonoGame.Extended.Tiled
internal TiledMapEllipseObject(ContentReader input)
: base(input)
{
RadiusX = Width / 2.0f;
RadiusY = Height / 2.0f;
RadiusX = Size.Width / 2.0f;
RadiusY = Size.Height / 2.0f;
Center = new Vector2(Position.X + RadiusX, Position.Y);
}
}