diff --git a/shaders/StylishShaders/HorizontalProgressBar.glsl b/shaders/StylishShaders/HorizontalProgressBarFrag.glsl similarity index 100% rename from shaders/StylishShaders/HorizontalProgressBar.glsl rename to shaders/StylishShaders/HorizontalProgressBarFrag.glsl diff --git a/shaders/StylishShaders/HorizontalProgressBarGradientSquareFrag.glsl b/shaders/StylishShaders/HorizontalProgressBarGradientSquareFrag.glsl new file mode 100644 index 0000000..8719613 --- /dev/null +++ b/shaders/StylishShaders/HorizontalProgressBarGradientSquareFrag.glsl @@ -0,0 +1,36 @@ +#version 410 + +in vec4 color; +in vec2 fragCoord; + +out vec4 FragColor; + +uniform float time; +uniform float fill; +uniform bool leftToRight; +uniform float height; + +void main() +{ //Rectangle plus large que haut + vec4 colorTemp = color; + float ouverture = 0.8f; + float lum = -pow(fragCoord.y + height/2f, 2f) * 5f /height + ouverture; + colorTemp.xyz *= lum; + if (leftToRight){ + if (fill > fragCoord.x){ + FragColor = colorTemp; + } + else { + FragColor = vec4(0f); + } + } else { + if (fill < fragCoord.x){ + FragColor = colorTemp; + } + else { + FragColor = vec4(0f); + } + } + + +} \ No newline at end of file diff --git a/src/engine/object/HorizontalProgressBar.java b/src/engine/object/HorizontalProgressBar.java index 2ff24aa..8d870e7 100644 --- a/src/engine/object/HorizontalProgressBar.java +++ b/src/engine/object/HorizontalProgressBar.java @@ -9,13 +9,15 @@ public class HorizontalProgressBar extends ObjectGl { private float max; private float current; private int leftToRight; + private boolean useHeight; public HorizontalProgressBar(float z, float w, float h, float size, float current, float max, boolean leftToRight) { super(z, w, h, size, null, new Vector3f(0f, 1f, 0f)); this.max = max; this.current = current; this.leftToRight = leftToRight ? 1 : 0; - this.setShader("shaders/StylishShaders/BasicNoTexVert.glsl", "shaders/StylishShaders/HorizontalProgressBar.glsl"); + this.useHeight = false; + this.setShader("shaders/StylishShaders/BasicNoTexVert.glsl", "shaders/StylishShaders/HorizontalProgressBarFrag.glsl"); } public void setCurrent(float newCurrent) { @@ -26,6 +28,10 @@ public class HorizontalProgressBar extends ObjectGl { this.max = newMax; } + public void setUseHeight(boolean b){ + this.useHeight = b; + } + protected void uniformInjection() { if (this.useTime) this.shader.setUniform1f("time", (float) glfwGetTime()); @@ -35,6 +41,10 @@ public class HorizontalProgressBar extends ObjectGl { this.shader.setUniform1f("fill", Math.abs(((this.current / this.max) * this.getWidth()) - this.getWidth())); } + if (this.useHeight) { + this.shader.setUniform1f("height", this.height); + } + this.shader.setUniform1i("leftToRight", this.leftToRight); this.shader.setUniformMat4f("projection", projection); diff --git a/src/gameplay/match/match.java b/src/gameplay/match/match.java index 5446658..cee90e7 100644 --- a/src/gameplay/match/match.java +++ b/src/gameplay/match/match.java @@ -190,7 +190,8 @@ public class match { engine.add_uiElement(coordP2); // Barre de vie healthBarP1Obj = new HorizontalProgressBar(80f, 8.5f, 0.4f, 100f, p1.getCurrentHP(), p1.getMaxHP(), false); - healthBarP1Obj.setColorVerticalGradient(new Vector3f(39f/255f, 201f/255f, 30f/255f), new Vector3f(19f/255f, 89f/255f, 15f/255f)); + healthBarP1Obj.setShader("shaders/StylishShaders/BasicNoTexVert.glsl", "shaders/StylishShaders/HorizontalProgressBarGradientSquareFrag.glsl"); + healthBarP1Obj.setUseHeight(true); healthBarP1 = new UIElement(healthBarP1Obj, 0.0138f, 0.980f, engine); healthBarP2Obj = new HorizontalProgressBar(80f, 8.5f, 0.4f, 100f, p2.getCurrentHP(), p2.getMaxHP(), true); healthBarP2Obj.setColorVerticalGradient(new Vector3f(39f/255f, 201f/255f, 30f/255f), new Vector3f(19f/255f, 89f/255f, 15f/255f)); @@ -249,7 +250,7 @@ public class match { //end round case 11: endRound(); - if(roundsWonP1 >= 2||roundsWonP2 >= 2) { endMatch();} //TODO : will probably need to specify more + if(roundsWonP1 >= 2 || roundsWonP2 >= 2) { endMatch();} //TODO : will probably need to specify more else{acCode = 0;} break; diff --git a/textures/keyboard_pad_glyphs/Controller_Disconnected.png b/textures/keyboard_pad_glyphs/Controller_Disconnected.png new file mode 100644 index 0000000..6c93def Binary files /dev/null and b/textures/keyboard_pad_glyphs/Controller_Disconnected.png differ diff --git a/textures/keyboard_pad_glyphs/Readme.txt b/textures/keyboard_pad_glyphs/Readme.txt new file mode 100644 index 0000000..7b82363 --- /dev/null +++ b/textures/keyboard_pad_glyphs/Readme.txt @@ -0,0 +1,147 @@ +Hey there! + +Hope you make good use of this pack. You can use all these assets in any project you want to (be it commercial or not).All of the assets are in the public domain under Creative Commons 0 (CC0) + +In this pack you will find over 500 buttons including: + +Xbox 360 Controller +Xbox One Controller + Diagram +Xbox Series X Controller + Diagram +Play Station 3 Controller +Play Station 4 Controller + Diagram +Play Station 5 Controller + Diagram +Play Station Move +PS Vita +Google Stadia Controller +Amazon Luna Controller +Vive Controller +Oculus Controllers & Remote +Wii Controller +Wii U Controller +Nintentdo Switch +Steam Controller (Updated to commercial version) +Ouya +Keyboard and mouse buttons (Both in dark and light variants including blanks) +Directional arrows for thumb sticks and movement keys +Touch Screen Gestures + +---------------------------------- + +I am "Nicolae (Xelu) Berbece", I'm responsible for the development studio "Those Awesome Guys", developers of "Move or Die" and publishers of "Monster Prom". + +You can contact me at nick@thoseawesomeguys.com or @xelubest + +Feel free to credit me in case you use anything in this pack, but don't worry, I won't mind if you don't. ;) + +Please share this pack with other fellow developers in need of such assets! In the spirit of good old chain mail, if you share this pack with 5 fellow devs, your game's steam review score will rise by 7% and a notable twitch streamer will pick it up for their stream. + +Keep making awesome things!!! + +~Nick + + + +Here is a semi-regularly-updated list of games using these prompts: +---------------------------- +Mega Man Legacy +Hunt: Showdown +Outter Wilds +Slay The Spire +A hat in Time +Forager +Wonder Boy the dragon's trap +Postal 2 +Postal Redux +RWBY +PikuNiku +Shadow Warrior 2 +Tiny Metal +Aztez +Disney Afternoon +Heat Signature +Turbo Dismount +Black Future 88 +Fallen Legion +Fru +Blockships +20XX +Furi +Mike Dies +Snake Pass +Danger Scavenger +Roboquest +Rive +Faerie Afterlight +Obduction +Fractal Fall +Guild of Ascension +Avaria VS +Blast Zone! Tournament +100ft Robot Golf +Sockventure +Spellbreak +Zombie Rollerz +B.O.O.M . - You Win +Battle Chef Brigade +De Blob +Phantom Brigade +Wytchwood +Mulaka +Airheart - Tales of broken wings +Redirection +Pull Stay +Death Pedal +Defender's Quest +Akuto "Mad World" +Project Mobius +Whispering Willows +Vostok Inc. +Divine commander +Sbirz +Grashers +Remnants of Naezith +Mothergunship +Roundabout +Hunter of the Disowned +Cosmos Quickstop +West of Dead +Tune Tank +Rain on your Parade +Infinite Adventures +Arena 3D +Chroma Vaders +Hoverloop +Wrestling Revolution 3D +Altero +Super Comboman +Disc Jam +Cooking Simulator +Jelly is Sticky +The Hatching +World to the West +Mayan Death Robots +Sentris +Carto +Unbox +Fort Triumph +Insane Robots +Super Daryl Deluxe +Induction +Pawarumi +The Flock +Binary Trigger +Fractal Space +Deputy dangle +Bubsy: The Woolies Strike Back +Tumblestone +The chronicles of Kyra +Ghost Knight Victis +Solbrain Knight of Darkness +SSMP +Distance +Idarb +Earthlock +Everspace +Pylon Rogue +The Church in the darkness +Sword n' Board \ No newline at end of file diff --git a/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Cross.png b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Cross.png new file mode 100644 index 0000000..32610dd Binary files /dev/null and b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Cross.png differ diff --git a/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Diagonal.png b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Diagonal.png new file mode 100644 index 0000000..6343f7d Binary files /dev/null and b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Diagonal.png differ diff --git a/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Full_Circle.png b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Full_Circle.png new file mode 100644 index 0000000..b468931 Binary files /dev/null and b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Full_Circle.png differ diff --git a/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Half_Circle.png b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Half_Circle.png new file mode 100644 index 0000000..3923044 Binary files /dev/null and b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Half_Circle.png differ diff --git a/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Horizontal.png b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Horizontal.png new file mode 100644 index 0000000..7cfd486 Binary files /dev/null and b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Horizontal.png differ diff --git a/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Quarter_Circle.png b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Quarter_Circle.png new file mode 100644 index 0000000..10f8b78 Binary files /dev/null and b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Quarter_Circle.png differ diff --git a/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Sides.png b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Sides.png new file mode 100644 index 0000000..7cfd486 Binary files /dev/null and b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Sides.png differ diff --git a/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Straight.png b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Straight.png new file mode 100644 index 0000000..f727cf9 Binary files /dev/null and b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Straight.png differ diff --git a/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Vertical.png b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Vertical.png new file mode 100644 index 0000000..f616a99 Binary files /dev/null and b/textures/keyboard_pad_glyphs/arrows/Directional_Arrow_Vertical.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/0_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/0_Key_Dark.png new file mode 100644 index 0000000..ab5408e Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/0_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/10_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/10_Key_Dark.png new file mode 100644 index 0000000..17339fe Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/10_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/11_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/11_Key_Dark.png new file mode 100644 index 0000000..18001d0 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/11_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/12_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/12_Key_Dark.png new file mode 100644 index 0000000..a18bb74 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/12_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/1_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/1_Key_Dark.png new file mode 100644 index 0000000..d88cfd0 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/1_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/2_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/2_Key_Dark.png new file mode 100644 index 0000000..257a0a8 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/2_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/3_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/3_Key_Dark.png new file mode 100644 index 0000000..37f01a2 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/3_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/4_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/4_Key_Dark.png new file mode 100644 index 0000000..f2ec50e Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/4_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/5_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/5_Key_Dark.png new file mode 100644 index 0000000..4996f90 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/5_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/6_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/6_Key_Dark.png new file mode 100644 index 0000000..7ebf62d Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/6_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/7_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/7_Key_Dark.png new file mode 100644 index 0000000..bae81b4 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/7_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/8_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/8_Key_Dark.png new file mode 100644 index 0000000..4cbf159 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/8_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/9_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/9_Key_Dark.png new file mode 100644 index 0000000..8da9b01 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/9_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/A_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/A_Key_Dark.png new file mode 100644 index 0000000..ba2b1dd Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/A_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Alt_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Alt_Key_Dark.png new file mode 100644 index 0000000..9c0ceb6 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Alt_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Arrow_Down_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Arrow_Down_Key_Dark.png new file mode 100644 index 0000000..9edcf58 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Arrow_Down_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Arrow_Left_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Arrow_Left_Key_Dark.png new file mode 100644 index 0000000..3425005 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Arrow_Left_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Arrow_Right_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Arrow_Right_Key_Dark.png new file mode 100644 index 0000000..929cb35 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Arrow_Right_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Arrow_Up_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Arrow_Up_Key_Dark.png new file mode 100644 index 0000000..025a68d Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Arrow_Up_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Asterisk_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Asterisk_Key_Dark.png new file mode 100644 index 0000000..abcdd9f Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Asterisk_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/B_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/B_Key_Dark.png new file mode 100644 index 0000000..bb6b3bb Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/B_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Backspace_Alt_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Backspace_Alt_Key_Dark.png new file mode 100644 index 0000000..be1a758 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Backspace_Alt_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Backspace_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Backspace_Key_Dark.png new file mode 100644 index 0000000..bd2b56d Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Backspace_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Bracket_Left_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Bracket_Left_Key_Dark.png new file mode 100644 index 0000000..8734b86 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Bracket_Left_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Bracket_Right_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Bracket_Right_Key_Dark.png new file mode 100644 index 0000000..c56aef4 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Bracket_Right_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/C_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/C_Key_Dark.png new file mode 100644 index 0000000..005e4ca Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/C_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Caps_Lock_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Caps_Lock_Key_Dark.png new file mode 100644 index 0000000..de5adb8 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Caps_Lock_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Command_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Command_Key_Dark.png new file mode 100644 index 0000000..22dfd60 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Command_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Ctrl_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Ctrl_Key_Dark.png new file mode 100644 index 0000000..12456bd Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Ctrl_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/D_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/D_Key_Dark.png new file mode 100644 index 0000000..cfd36f2 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/D_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Del_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Del_Key_Dark.png new file mode 100644 index 0000000..87bd830 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Del_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/E_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/E_Key_Dark.png new file mode 100644 index 0000000..34b7be1 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/E_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/End_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/End_Key_Dark.png new file mode 100644 index 0000000..2d6211c Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/End_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Enter_Alt_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Enter_Alt_Key_Dark.png new file mode 100644 index 0000000..5493293 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Enter_Alt_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Enter_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Enter_Key_Dark.png new file mode 100644 index 0000000..1f144f5 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Enter_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Enter_Tall_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Enter_Tall_Key_Dark.png new file mode 100644 index 0000000..de3abde Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Enter_Tall_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Esc_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Esc_Key_Dark.png new file mode 100644 index 0000000..c363cdc Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Esc_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F10_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F10_Key_Dark.png new file mode 100644 index 0000000..17339fe Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F10_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F11_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F11_Key_Dark.png new file mode 100644 index 0000000..18001d0 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F11_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F12_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F12_Key_Dark.png new file mode 100644 index 0000000..a18bb74 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F12_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F1_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F1_Key_Dark.png new file mode 100644 index 0000000..fc5865a Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F1_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F2_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F2_Key_Dark.png new file mode 100644 index 0000000..ffceae5 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F2_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F3_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F3_Key_Dark.png new file mode 100644 index 0000000..c49d840 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F3_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F4_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F4_Key_Dark.png new file mode 100644 index 0000000..c09acb2 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F4_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F5_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F5_Key_Dark.png new file mode 100644 index 0000000..c304fd0 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F5_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F6_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F6_Key_Dark.png new file mode 100644 index 0000000..bc3f31c Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F6_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F7_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F7_Key_Dark.png new file mode 100644 index 0000000..2c28dc0 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F7_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F8_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F8_Key_Dark.png new file mode 100644 index 0000000..6c09529 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F8_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F9_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F9_Key_Dark.png new file mode 100644 index 0000000..0b67e2b Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F9_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/F_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/F_Key_Dark.png new file mode 100644 index 0000000..0781a72 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/F_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/G_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/G_Key_Dark.png new file mode 100644 index 0000000..79ffcd2 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/G_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/H_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/H_Key_Dark.png new file mode 100644 index 0000000..00a4fe4 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/H_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Home_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Home_Key_Dark.png new file mode 100644 index 0000000..10ba170 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Home_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/I_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/I_Key_Dark.png new file mode 100644 index 0000000..de8f252 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/I_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Insert_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Insert_Key_Dark.png new file mode 100644 index 0000000..d0ae4d5 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Insert_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/J_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/J_Key_Dark.png new file mode 100644 index 0000000..947b5eb Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/J_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/K_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/K_Key_Dark.png new file mode 100644 index 0000000..2ca24bd Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/K_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/L_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/L_Key_Dark.png new file mode 100644 index 0000000..725c878 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/L_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/M_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/M_Key_Dark.png new file mode 100644 index 0000000..4477153 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/M_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Mark_Left_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Mark_Left_Key_Dark.png new file mode 100644 index 0000000..a5e48ce Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Mark_Left_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Mark_Right_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Mark_Right_Key_Dark.png new file mode 100644 index 0000000..d418e77 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Mark_Right_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Minus_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Minus_Key_Dark.png new file mode 100644 index 0000000..1e6dcf7 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Minus_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Mouse_Left_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Mouse_Left_Key_Dark.png new file mode 100644 index 0000000..1b1eb86 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Mouse_Left_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Mouse_Middle_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Mouse_Middle_Key_Dark.png new file mode 100644 index 0000000..0fd0a2e Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Mouse_Middle_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Mouse_Right_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Mouse_Right_Key_Dark.png new file mode 100644 index 0000000..cc24f92 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Mouse_Right_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Mouse_Simple_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Mouse_Simple_Key_Dark.png new file mode 100644 index 0000000..774bc62 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Mouse_Simple_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/N_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/N_Key_Dark.png new file mode 100644 index 0000000..689e2f6 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/N_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Num_Lock_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Num_Lock_Key_Dark.png new file mode 100644 index 0000000..2808f91 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Num_Lock_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/O_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/O_Key_Dark.png new file mode 100644 index 0000000..b703ceb Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/O_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/P_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/P_Key_Dark.png new file mode 100644 index 0000000..13e8393 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/P_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Page_Down_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Page_Down_Key_Dark.png new file mode 100644 index 0000000..ace123f Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Page_Down_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Page_Up_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Page_Up_Key_Dark.png new file mode 100644 index 0000000..da15112 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Page_Up_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Plus_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Plus_Key_Dark.png new file mode 100644 index 0000000..ebc1035 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Plus_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Plus_Tall_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Plus_Tall_Key_Dark.png new file mode 100644 index 0000000..3049116 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Plus_Tall_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Print_Screen_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Print_Screen_Key_Dark.png new file mode 100644 index 0000000..88ad617 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Print_Screen_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Q_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Q_Key_Dark.png new file mode 100644 index 0000000..fe8add9 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Q_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Question_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Question_Key_Dark.png new file mode 100644 index 0000000..d32683c Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Question_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Quote_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Quote_Key_Dark.png new file mode 100644 index 0000000..108d665 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Quote_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/R_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/R_Key_Dark.png new file mode 100644 index 0000000..5ac2461 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/R_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/S_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/S_Key_Dark.png new file mode 100644 index 0000000..1fb8919 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/S_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Semicolon_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Semicolon_Key_Dark.png new file mode 100644 index 0000000..800d299 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Semicolon_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Shift_Alt_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Shift_Alt_Key_Dark.png new file mode 100644 index 0000000..e57fb5f Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Shift_Alt_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Shift_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Shift_Key_Dark.png new file mode 100644 index 0000000..05ba791 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Shift_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Slash_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Slash_Key_Dark.png new file mode 100644 index 0000000..38b411b Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Slash_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Space_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Space_Key_Dark.png new file mode 100644 index 0000000..2298b4f Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Space_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/T_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/T_Key_Dark.png new file mode 100644 index 0000000..9ba1250 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/T_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Tab_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Tab_Key_Dark.png new file mode 100644 index 0000000..3fea857 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Tab_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Tilda_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Tilda_Key_Dark.png new file mode 100644 index 0000000..2f8db91 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Tilda_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/U_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/U_Key_Dark.png new file mode 100644 index 0000000..79f9138 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/U_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/V_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/V_Key_Dark.png new file mode 100644 index 0000000..c0f0599 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/V_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/W_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/W_Key_Dark.png new file mode 100644 index 0000000..06278ee Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/W_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Win_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Win_Key_Dark.png new file mode 100644 index 0000000..58576cb Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Win_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/X_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/X_Key_Dark.png new file mode 100644 index 0000000..95192f0 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/X_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Y_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Y_Key_Dark.png new file mode 100644 index 0000000..b94e455 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Y_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/keyboard/Z_Key_Dark.png b/textures/keyboard_pad_glyphs/keyboard/Z_Key_Dark.png new file mode 100644 index 0000000..e9a1299 Binary files /dev/null and b/textures/keyboard_pad_glyphs/keyboard/Z_Key_Dark.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_A.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_A.png new file mode 100644 index 0000000..28c3b60 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_A.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_B.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_B.png new file mode 100644 index 0000000..2a4d9b6 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_B.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Diagram.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Diagram.png new file mode 100644 index 0000000..9b79c5d Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Diagram.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Diagram_Simple.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Diagram_Simple.png new file mode 100644 index 0000000..7e3a1d9 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Diagram_Simple.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad.png new file mode 100644 index 0000000..9c04c85 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Down.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Down.png new file mode 100644 index 0000000..8c1134c Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Down.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Left.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Left.png new file mode 100644 index 0000000..45ddb16 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Left.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Right.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Right.png new file mode 100644 index 0000000..a1fbc2c Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Right.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Up.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Up.png new file mode 100644 index 0000000..e8eab7d Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Dpad_Up.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_LB.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_LB.png new file mode 100644 index 0000000..f6c414b Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_LB.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_LT.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_LT.png new file mode 100644 index 0000000..e9681c9 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_LT.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Left_Stick.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Left_Stick.png new file mode 100644 index 0000000..9c5ca5c Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Left_Stick.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Left_Stick_Click.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Left_Stick_Click.png new file mode 100644 index 0000000..ad0428f Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Left_Stick_Click.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Menu.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Menu.png new file mode 100644 index 0000000..2cbfb08 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Menu.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_RB.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_RB.png new file mode 100644 index 0000000..5dcfc6d Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_RB.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_RT.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_RT.png new file mode 100644 index 0000000..7bf27f4 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_RT.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Right_Stick.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Right_Stick.png new file mode 100644 index 0000000..3d83a22 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Right_Stick.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Right_Stick_Click.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Right_Stick_Click.png new file mode 100644 index 0000000..de08508 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Right_Stick_Click.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Windows.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Windows.png new file mode 100644 index 0000000..3756d29 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Windows.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_X.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_X.png new file mode 100644 index 0000000..a0f0ac1 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_X.png differ diff --git a/textures/keyboard_pad_glyphs/xbox/XboxOne_Y.png b/textures/keyboard_pad_glyphs/xbox/XboxOne_Y.png new file mode 100644 index 0000000..4e31627 Binary files /dev/null and b/textures/keyboard_pad_glyphs/xbox/XboxOne_Y.png differ