mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-18 21:50:04 +00:00
added sliders
reworked painting added animations reworked point2 added point3 point4 made tag inner class in Debugger added fps animation parsing debuggers made new thread for painting at 60fps
This commit is contained in:
@@ -1,6 +1,20 @@
|
||||
package guiTree.Helper;
|
||||
|
||||
public class Debugger {
|
||||
public enum Tag {
|
||||
LISTENER(false),
|
||||
PAINTING(false),
|
||||
FPS(false),
|
||||
ANIMATIONS(true),
|
||||
PARSING(false);
|
||||
|
||||
public boolean value;
|
||||
|
||||
Tag(boolean value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
|
||||
private static Timer timer = new Timer();
|
||||
|
||||
public static void log(String message, Tag tag) {
|
||||
|
||||
Reference in New Issue
Block a user