Skip to content

Instantly share code, notes, and snippets.

View ickybodclay's full-sized avatar
👻
Being spooky

JP ickybodclay

👻
Being spooky
View GitHub Profile
@ickybodclay
ickybodclay / aipd-voices.md
Last active August 21, 2022 20:42
All the available voices for AIPD.
  1. "en-US-Wavenet-A", - male voices
  2. "en-US-Wavenet-B",
  3. "en-US-Wavenet-D",
  4. "en-US-Wavenet-I",
  5. "en-US-Wavenet-J",
  6. "en-GB-Wavenet-B",
  7. "en-GB-Wavenet-D",
  8. "en-AU-Wavenet-B",
  9. "en-AU-Wavenet-D",
  10. "de-DE-Wavenet-D",

The World of Kedar

Kedar is a world of dragons, demons, and monsters. These dark creatures constantly war for control of the land, leaving the few human kingdoms in the shadow of a dark and powerful force. But now, the kingdoms of man are fighting back, slowly assembling an army to reclaim their world.

Character

Name:

Gender:

@ickybodclay
ickybodclay / Example.java
Created February 14, 2018 01:34
[LibGDX] Control Scene2D Buttons With A Controller
TextButton.TextButtonStyle buttonStyle = new TextButton.TextButtonStyle();
buttonStyle.font = new BitmapFont();
buttonStyle.font.scale(2f);
buttonStyle.fontColor = Color.WHITE;
buttonStyle.overFontColor = Color.LIGHT_GRAY;
buttonStyle.downFontColor = Color.GRAY;
newGameButton = new TextButton("New Game", buttonStyle);
continueButton = new TextButton("Continue", buttonStyle);
optionsButton = new TextButton("Options", buttonStyle);