chore: Update cicd.yml file on flame_3d to match main, rollback color changes (#3378)

Update cicd.yml file on flame_3d to match main.

Since we finally updated main, we should require no difference
whatsoever on this file anymore.

This will require downgrading all the color changes, which is fine. This
should never have been a part of flame_3d to begin with.

Files were "untouched" by checking out the exact version as they are in
main right now (will need to rebase flame_3d to main later). I had to
add a couple more files because the files on main had dependencies on
changes that are not yet rebased on flame_3d. These extra diffs should
disappear when I do the final rebase.
This commit is contained in:
Luan Nico
2024-12-10 15:22:23 -05:00
parent edae166252
commit 06f5a4b4a8
39 changed files with 784 additions and 864 deletions

View File

@ -13,7 +13,7 @@ class ResizingRectangle extends RectangleComponent {
void onGameResize(Vector2 size) {
super.onGameResize(size);
this.size = size * 0.4;
this.size = size * .4;
}
}