SecondHalfGames / yakui

yakui is a declarative Rust UI library for games
Apache License 2.0
237 stars 21 forks source link

Can I make yakui look whatever I want it to look like? #77

Closed Raj2032 closed 2 years ago

Raj2032 commented 2 years ago

Can I make yakui UI look whatever I want it to?

For example like pygui

image

nuclear's buttons image

etc etc?

LPGhatguy commented 2 years ago

Yeah! Right now the styling available with the built-in widgets is pretty limited, but custom widgets are easy to implement. The goal is that games generally will use the built-in widgets at first, and then eventually create custom widgets that fit their game's visual style.

The yakui-widgets crate is designed to be forkable, so you can use its widgets as a starting point. Eventually, we'll have a better slate of primitives for building very custom widgets.

Raj2032 commented 2 years ago

@LPGhatguy I see mate thank you :)