This commit is contained in:
Anuken 2023-11-08 08:42:48 -05:00
parent 65d0b6adcc
commit be44e283d8
2 changed files with 142 additions and 127 deletions

View file

@ -2596,5 +2596,15 @@ public class Fx{
}
Draw.reset();
}),
debugRect = new Effect(90f, 1000000000000f, e -> {
if(!(e.data instanceof Rect rect)) return;
Draw.color(e.color);
Lines.stroke(2f);
Lines.rect(rect);
Draw.reset();
});
}