This commit is contained in:
Matt Thorson 2020-05-06 16:52:40 -07:00
parent 55948541b6
commit 12c10909c9

View File

@ -7,7 +7,7 @@ namespace Strawberry
{ {
private Vector remainder; private Vector remainder;
public Point Pushed; public Point MovedByGeometry;
public this(Point position) public this(Point position)
: base(position) : base(position)
@ -39,9 +39,7 @@ namespace Strawberry
{ {
base.Update(); base.Update();
if (Pushed != Point.Zero) MovedByGeometry = Point.Zero;
Calc.Log(Pushed);
Pushed = Point.Zero;
} }
public bool MoveX(float amount, Action<Collision> onCollide = null) public bool MoveX(float amount, Action<Collision> onCollide = null)