Add fun emoji animations when selecting boost level.

This commit is contained in:
Alex Hart
2021-10-28 17:41:00 -03:00
committed by Greyson Parrelli
parent 5bb48caafd
commit 614d6ce04b
10 changed files with 117 additions and 4 deletions

View File

@@ -98,6 +98,18 @@ public final class Projection {
}
}
@Override public String toString() {
return "Projection{" +
"x=" + x +
", y=" + y +
", width=" + width +
", height=" + height +
", corners=" + corners +
", path=" + path +
", rect=" + rect +
'}';
}
public @NonNull Projection translateX(float xTranslation) {
return set(x + xTranslation, y, width, height, corners);
}