RPGUI icon indicating copy to clipboard operation
RPGUI copied to clipboard

Lightweight framework for old-school RPG GUI in web!

Results 8 RPGUI issues
Sort by recently updated
recently updated
newest added

#10 End caps were rising up above the button as the button width was increased do to the -5% margin. Instead, I refactored it using absolute positioning on the pseudo-elements...

I am trying to use RPGUI for a React project, however I am running into an issue where event handlers are not being passed to input fields. On closer inspection...

I think it would be nice if there was a gold coin icon used for a complement of the icons section which may be used for a shop. I've linked...

For the golden button, it's incredibly pronounced since the endcaps end up floating above the button. The regular buttons are more subtle -- the nails at the ends of the...

I forced scrolling to be visible on chrome and it's quite ugly : ![scrolling_chrome](https://cloud.githubusercontent.com/assets/7881515/12127551/2f64f024-b3f8-11e5-813f-09cf23ae2fb6.png) The problem seems to come from the fact that the slider is stretched..

I forced scrolling to be visible on firefox and it doesn't show at all. Probably missing some moz- directives ![scrolling_firefox](https://cloud.githubusercontent.com/assets/7881515/12127535/0f3968fc-b3f8-11e5-9d4b-731939272a93.png)

// --- Definições do Jogo --- const player = { name: "Andarilho", level: 1, maxHP: 100, currentHP: 100, attack: 10, defense: 5, isDefending: false, }; let enemy = { name:...