List of usage examples for com.badlogic.gdx.graphics Color subclass-usage
From source file com.formatic.boxes.Color.java
public class Color extends com.badlogic.gdx.graphics.Color { public static void main(String[] args) { Color c = new Color(Mode.HSB); c.setSaturation(0.5f); c.setBrightness(0.5f); for (int n = 0; n < 360; n++) {
From source file com.ridiculousRPG.util.ColorSerializable.java
/** * @author Alexander Baumgartner */ public class ColorSerializable extends Color implements Serializable { private static final long serialVersionUID = 1L;
From source file de.longri.cachebox3.utils.HSV_Color.java
/** * Erweitert die LibGdx Color um die HSV Werte * * @author Longri */ public class HSV_Color extends Color {
From source file io.lonelyrobot.empires.client.types.Colour.java
/**
* Advanced colour object to store hexadecimal colour values in it. It is also using the correct spelling of the word
* "colour" that Americans have butchered for the last 250 years. You're welcome England!
*
* @author: Katharina Sabel <katharina.sabel@2rsoftworks.de>
*/