1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-08 15:19:50 +00:00

Initial implementation of bspline support in the animation editor

This commit is contained in:
fgenesis 2022-09-23 18:10:44 +02:00
parent 4c52a147b0
commit 575a83abd6
10 changed files with 515 additions and 120 deletions

View file

@ -93,6 +93,10 @@ public:
float borderAlpha;
Vector repeatToFillScale;
static void ResetGrid(Vector *dst, size_t w, size_t h);
static void ResetGridAndAlpha(Vector *dst, size_t w, size_t h, float alpha = 1.0f);
protected:
float gridTimer;
Array2d<Vector> drawGrid;