public TransformCDEPRECATED(float x, float y, Body b) { body = b; if (b != null) { gPos = new getPos(getPosFromBody); } else { gPos = new getPos(getPosFromPos); } this._position = new Vector2(x, y); }
public TransformCDEPRECATED(float x, float y) { gPos = new getPos(getPosFromPos); this._position = new Vector2(x, y); }
public TransformCDEPRECATED(Vector2 position) { gPos = new getPos(getPosFromPos); this._position = position; }