mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-25 08:22:15 +00:00
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:
committed by
Dylan Wilson
parent
be429b4a07
commit
b22a062147
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user