This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void main(String[] args) throws IOException { | |
final BufferedImage image = new BufferedImage(1024, 1024, BufferedImage.TYPE_INT_ARGB); | |
final Graphics graphics = image.getGraphics(); | |
int center = image.getWidth() / 2; | |
int outerRadius = 512; | |
int segments = 18; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
knockbackFriction = 2.0D; | |
knockbackHorizontal = 0.35D; | |
knockbackVertical = 0.35D; | |
knockbackVerticalLimit = 0.4D; | |
knockbackExtraHorizontal = 0.425D; | |
knockbackExtraVertical = 0.085D; |