Region part growing (#7861)

E x p a n d
This commit is contained in:
MEEPofFaith
2023-01-09 19:08:40 -08:00
committed by GitHub
parent 05221a8043
commit 2a6fcb7983
2 changed files with 21 additions and 6 deletions

View File

@@ -45,14 +45,19 @@ public abstract class DrawPart{
public static class PartMove{
public PartProgress progress = PartProgress.warmup;
public float x, y, rot;
public float x, y, gx, gy, rot;
public PartMove(PartProgress progress, float x, float y, float rot){
public PartMove(PartProgress progress, float x, float y, float gx, float gy, float rot){
this.progress = progress;
this.x = x;
this.y = y;
this.gx = gx;
this.gy = gy;
this.rot = rot;
}
public PartMove(PartProgress progress, float x, float y, float rot){
this(progress, x, y, 0, 0, rot);
}
public PartMove(){
}