Java Code Examples for org.newdawn.slick.Color#orange()
The following examples show how to use
org.newdawn.slick.Color#orange() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RendererSlick.java From nullpomino with BSD 3-Clause "New" or "Revised" License | 6 votes |
public static Color getMeterColorAsColor(int meterColor) { switch(meterColor) { case GameEngine.METER_COLOR_PINK: return new Color(255, 0,255); case GameEngine.METER_COLOR_PURPLE: return new Color(128, 0,255); case GameEngine.METER_COLOR_DARKBLUE: return new Color( 0, 0,128); case GameEngine.METER_COLOR_BLUE: return Color.blue; case GameEngine.METER_COLOR_CYAN: return Color.cyan; case GameEngine.METER_COLOR_DARKGREEN: return new Color( 0,128, 0); case GameEngine.METER_COLOR_GREEN: return Color.green; case GameEngine.METER_COLOR_YELLOW: return Color.yellow; case GameEngine.METER_COLOR_ORANGE: return Color.orange; case GameEngine.METER_COLOR_RED: return Color.red; } return Color.white; }
Example 2
Source File: MoveStoryboard.java From opsu-dance with GNU General Public License v3.0 | 5 votes |
@Override public void revalidate() { super.revalidate(); btnAddLinear = new SimpleButton(width - 205, 50, 200, 25, Fonts.SMALL, "add linear", Colors.BLUE_BUTTON, Colors.WHITE_FADE, Colors.WHITE_FADE, Colors.ORANGE_BUTTON); btnAddQuadratic = new SimpleButton(width - 205, 80, 200, 25, Fonts.SMALL, "add quadratic", Colors.BLUE_BUTTON, Colors.WHITE_FADE, Colors.WHITE_FADE, Colors.ORANGE_BUTTON); btnAddCubic = new SimpleButton(width - 205, 110, 200, 25, Fonts.SMALL, "add cubic", Colors.BLUE_BUTTON, Colors.WHITE_FADE, Colors.WHITE_FADE, Colors.ORANGE_BUTTON); btnAnimLin = new SimpleButton(width - 250, 50, 40, 25, Fonts.SMALL, "lin", Color.blue, Color.white, Color.white, Color.orange); btnAnimMid = new SimpleButton(width - 250, 80, 40, 25, Fonts.SMALL, "mid", Color.blue, Color.white, Color.white, Color.orange); btnAnimCub = new SimpleButton(width - 250, 110, 40, 25, Fonts.SMALL, "cub", Color.blue, Color.white, Color.white, Color.orange); }
Example 3
Source File: CubicStoryboardMover.java From opsu-dance with GNU General Public License v3.0 | 4 votes |
public CubicStoryboardMover() { super(Color.green, Color.orange); }