Rand Stats

Raygui::Bindings

zef:vushu

raygui-raku (Raygui::Bindings)

Autogenerated raygui-raku bindings, powered by raku grammar and actions.

Preface

To make Raku play together with Raygui, many of Raygui's functions has to be wrapped into a function, to support pass as pointer meaning we are "pointerizing" the functions. This is done automatically when generating the bindings. The bindings are also converted to kebab-case to fit Raku code style.

On installation:

Dependencies

Raylib::Bindings;

Install

zef install Raygui::Bindings

Install from repository

git clone git@github.com:vushu/raygui-raku.git
cd raygui-raku 
zef install .

Examples

raku examples/portable-window.raku

Mutable strings

Some functions in raygui requires a mutable string so we can't parse a normal Raku Str since they are immutable. Please parse a CArray[uint8] for these cases, it's important to encode it as utf-8. Example:

my $text = CArray[uint8].new("Foo".encode('utf-8'));
gui-text-box($message-box-rect, $text, 3, True)

More info

https://github.com/raysan5/raygui


Missing:

help is appreciated!